Skip to content

Installs project and runs project tests #9

Installs project and runs project tests

Installs project and runs project tests #9

Workflow file for this run

name: run-tests
run-name: Installs project and runs project tests
on: [ push, pull_request ]
jobs:
run-tests-nix:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16, 18 ]
name: Tests on Ubuntu with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run compile
# Commenting below until code coverage story is done
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v3
# with:
# files: reports/coverage/*.json
# flags: frontend,backend
run-tests-win:
runs-on: windows-latest
strategy:
matrix:
node: [ 16, 18 ]
name: Tests on Windows with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install
# Commenting below until code coverage story is done
# - run: yarn test