Skip to content

Release v1.0.0

Release v1.0.0 #25

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Install dependencies
run: npm install
- name: "Run Tests"
run: npm run test
with:

Check failure on line 26 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 26, Col: 9): Unexpected value 'with'
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test