From d8695a2d5dfbd2df479af3993b1ee541854c1562 Mon Sep 17 00:00:00 2001 From: Bilal Qamar <59555732+BilalQamar95@users.noreply.github.com> Date: Tue, 27 Aug 2024 17:32:23 +0500 Subject: [PATCH] test: Add Node 20 to CI matrix --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7cb6e81e..5550834f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,8 @@ 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 }} @@ -20,7 +21,8 @@ jobs: 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 }}