Skip to content

9.2.3

9.2.3 #143

Workflow file for this run

on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
# TODO: re-enable windows
#- windows-latest
node_version:
- 14
- 16
- 18
exclude:
- os: macos-latest
node: 14

Check failure on line 20 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 20, Col: 13): Matrix exclude key 'node' does not match any key within the matrix

Check failure on line 20 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 20, Col: 13): Matrix exclude key 'node' does not match any key within the matrix
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test-coverage