Skip to content

Installs project and runs project tests #59

Installs project and runs project tests

Installs project and runs project tests #59

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:
- name: Checkout and Build
uses: actions/checkout@v3
uses: actions/setup-node@v3

Check failure on line 14 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / run-tests

Invalid workflow file

The workflow is not valid. .github/workflows/run-tests.yml (Line: 14, Col: 9): 'uses' is already defined .github/workflows/run-tests.yml (Line: 18, Col: 11): 'run' is already defined
with:
node-version: ${{ matrix.node }}
run: npm install
run: npm run compile
- name: Test Headless
uses: coactions/[email protected]
with:
npm run test
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: npm install
- run: npm run compile
- run: npm run test-coverage