From 714851c3299361c2af6e5c6ee6435b15659b72f5 Mon Sep 17 00:00:00 2001 From: Bilal Qamar <59555732+BilalQamar95@users.noreply.github.com> Date: Thu, 22 Aug 2024 17:39:33 +0500 Subject: [PATCH] test: Add Node 20 to CI matrix (#1069) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c50a45ec6..445c3d4fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,13 +13,13 @@ jobs: - i18n_extract - lint - test + node: [18, 20] + continue-on-error: ${{ matrix.node == 20 }} steps: - uses: actions/checkout@v4 - - name: Setup Nodejs Env - run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV - uses: actions/setup-node@v4 with: - node-version: ${{ env.NODE_VER }} + node-version: ${{ matrix.node }} - run: make requirements - run: make test NPM_TESTS=build - run: make test NPM_TESTS=${{ matrix.npm-test }}