mirror of
https://github.com/kou029w/websri.git
synced 2025-01-18 16:08:16 +00:00
21 lines
422 B
YAML
21 lines
422 B
YAML
|
name: test
|
||
|
on: push
|
||
|
jobs:
|
||
|
nodejs:
|
||
|
name: Node.js v${{ matrix.node-version }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
node-version:
|
||
|
- 20
|
||
|
- 22
|
||
|
runs-on: ubuntu-latest
|
||
|
timeout-minutes: 15
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: ${{ matrix.node-version }}
|
||
|
cache: npm
|
||
|
- run: npm ci
|
||
|
- run: npm test
|