Skip to content

Update nodejs.yml

Update nodejs.yml #58

Workflow file for this run

name: Node CI
on: [pull_request]
env:
CI: true
jobs:
test:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
node: [18, 20, 22]
os: [ubuntu-latest]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install npm dependencies
run: npm ci # switch to `npm ci` when Node.js 6 support is dropped
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test