Skip to content

feat: support node 16+ #36

feat: support node 16+

feat: support node 16+ #36

Workflow file for this run

name: CI / Automated testing
on:
pull_request:
branches:
- master
jobs:
lint:

Check failure on line 9 in .github/workflows/auto-build.yml

View workflow run for this annotation

GitHub Actions / CI / Automated testing

Invalid workflow file

The workflow is not valid. .github/workflows/auto-build.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- run: npm ci
- run: npm run lint
test:
strategy:
matrix:
node: [ 14, 16, 18 ]
runs-on: ubuntu-latest
needs: install-deps
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run test