Skip to content

Commit

Permalink
Test all supported node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne committed Jan 5, 2025
1 parent 7aadaa3 commit 118d1c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@ jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 22
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: './website/package-lock.json'

Expand All @@ -28,3 +31,4 @@ jobs:

- name: Test build website
run: npm run build
continue-on-error: false

0 comments on commit 118d1c6

Please sign in to comment.