2025-01-06 11:19:23 +09:00
|
|
|
name: ci
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
jobs:
|
|
|
|
test:
|
2025-01-06 11:22:48 +09:00
|
|
|
name: Node.js v${{ matrix.node-version }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version:
|
|
|
|
- 22
|
2025-01-06 11:19:23 +09:00
|
|
|
runs-on: ubuntu-latest
|
2025-01-06 11:22:48 +09:00
|
|
|
timeout-minutes: 15
|
2025-01-06 11:19:23 +09:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
2025-01-06 11:22:48 +09:00
|
|
|
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
cache: npm
|
2025-01-06 11:19:23 +09:00
|
|
|
- name: Install
|
|
|
|
run: npm ci
|
|
|
|
- name: Test
|
|
|
|
run: npm test
|