Skip to content

Node.jsメンテナンス: 依存関係とCI環境を最新化 #55

Node.jsメンテナンス: 依存関係とCI環境を最新化

Node.jsメンテナンス: 依存関係とCI環境を最新化 #55

Workflow file for this run

name: test
on: [push, pull_request]
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@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Install pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: pnpm install
- name: Test
run: pnpm test