Skip to content

Commit

Permalink
test: Add Node 20 to CI matrix (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
BilalQamar95 authored Sep 3, 2024
1 parent 065b5d1 commit e28aaa2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
jobs:
tests:
runs-on: ubuntu-22.04
strategy:
matrix:
node: [18, 20]
continue-on-error: ${{ matrix.node == 20 }}

steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -16,7 +21,7 @@ jobs:
- name: Setup Node.js
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 e28aaa2

Please sign in to comment.