Skip to content

Merge pull request #724 from github/dependabot/github_actions/actions… #1707

Merge pull request #724 from github/dependabot/github_actions/actions…

Merge pull request #724 from github/dependabot/github_actions/actions… #1707

Workflow file for this run

name: Node CI
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 26]
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install
run: npm ci
- name: Test
run: npm test