Skip to content

Commit

Permalink
test: Add Node 20 to CI matrix (#853)
Browse files Browse the repository at this point in the history
Co-authored-by: Deborah Kaplan <[email protected]>
  • Loading branch information
BilalQamar95 and deborahgu authored Aug 30, 2024
1 parent deca4b6 commit 1c17517
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ jobs:
matrix:
python-version: ['3.8', '3.12']
django-version: ['4.2']
node: [18]
node: [18, 20]
continue-on-error: ${{ matrix.node == 20 }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- uses: actions/setup-node@v2-beta
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand Down

0 comments on commit 1c17517

Please sign in to comment.