Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x]
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: node -v
- run: npm -v
- run: npm ci
- run: npm test
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: node -v
- run: npm -v
- run: npm ci
- run: npm test

mac-and-windows-test:
name: Test on node latest and ${{ matrix.os }}
Expand All @@ -29,12 +29,12 @@ jobs:
matrix:
os: [windows-latest, macos-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22.x
cache: 'npm'
- run: node -v
- run: npm -v
- run: npm ci
- run: npm test
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24.x
cache: 'npm'
- run: node -v
- run: npm -v
- run: npm ci
- run: npm test
Loading