Skip to content

Merge pull request #120 from tcort/dependabot/github_actions/actions/… #177

Merge pull request #120 from tcort/dependabot/github_actions/actions/…

Merge pull request #120 from tcort/dependabot/github_actions/actions/… #177

Workflow file for this run

name: Test library
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 20
- 22
- 24
- 25
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test