Skip to content

Commit

Permalink
test: Add Node 20 to CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
BilalQamar95 committed Sep 13, 2024
1 parent d551624 commit 0dba909
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,17 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
continue-on-error: ${{ matrix.node == 20 }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
node-version: ${{ matrix.node }}

- name: Install Dependencies
run: npm ci
Expand Down

0 comments on commit 0dba909

Please sign in to comment.