Skip to content

Skipping deployments for now in dev #18

Skipping deployments for now in dev

Skipping deployments for now in dev #18

Workflow file for this run

# name: Integration
# on:
# push:
# branches: [ "main" ]
# pull_request:
# branches: [ "main" ]
# jobs:
# build:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node-version: [18.x, 20.x, 22.x]
# steps:
# - uses: actions/checkout@v4
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}
# cache: 'npm'
# - name: "Installing Dependencies"
# run: npm i
# - name: "Build command"
# run: npm run build
# unit-tests:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node-version: [18.x, 20.x, 22.x]
# steps:
# - uses: actions/checkout@v4
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}
# cache: 'npm'
# - name: "Installing Dependencies"
# run: npm i
# - name: "Running test cases"
# run: npm run test