Skip to content

ci: Update GitHub Action & Node.js versions #8

ci: Update GitHub Action & Node.js versions

ci: Update GitHub Action & Node.js versions #8

Workflow file for this run

name: Node.js
on:
pull_request:
push:
branches: [master]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 20, latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npx jest --coverage
- uses: codecov/codecov-action@v4