Skip to content

chore(deps): update actions/checkout action to v6 #409

chore(deps): update actions/checkout action to v6

chore(deps): update actions/checkout action to v6 #409

Workflow file for this run

name: test
on: [push, pull_request]
env:
CI: true
jobs:
test:
name: "Test on Node.js ${{ matrix.node_version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [ 20, 22, 24 ]
steps:
- name: checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: setup Node.js ${{ matrix.node_version }}
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node_version: ${{ matrix.node_version }}
- name: Install
run: yarn install
- name: Test
run: yarn test