Skip to content

Merge pull request #3 from amitjimiwal/feature #32

Merge pull request #3 from amitjimiwal/feature

Merge pull request #3 from amitjimiwal/feature #32

Workflow file for this run

name: Check and Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build