Merge branch 'Dev' #100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Node.js CI | |
on: | |
push: | |
branches: [ "main", "Dev" ] | |
pull_request: | |
branches: [ "main", "Dev" ] | |
jobs: | |
# This workflow contains multiple jobs | |
build_test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [17.x, 18.x, 20.x, 21.x] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# install applicaion dependencies | |
- name: Install dependencies | |
working-directory: ./client-app | |
run: | | |
npm install | |
# build and test the apps | |
- name: build | |
working-directory: ./client-app | |
run: | | |
npm run build |