Skip to content

ci: update Node.js versions supported and remove legacy step (#1599) #687

ci: update Node.js versions supported and remove legacy step (#1599)

ci: update Node.js versions supported and remove legacy step (#1599) #687

Workflow file for this run

name: NPM Test
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- '*'
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18, 19, 20, 21, 22, 23]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test