Skip to content

Bump actions/checkout from 6.0.2 to 7.0.0 in /.github/workflows #147

Bump actions/checkout from 6.0.2 to 7.0.0 in /.github/workflows

Bump actions/checkout from 6.0.2 to 7.0.0 in /.github/workflows #147

Workflow file for this run

name: Node Unit Tests
on:
push:
branches-ignore:
- "gh-pages"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
node: ["18", "20", "22", "24", "26"]
name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v7.0.0
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
# Do *not* use cache (see: tanstack cache poisoning vuln)
# cache: npm
- run: npm install
- run: npm test
env:
YARN_GPG: no