Skip to content

Commit

Permalink
test: Add Node 20 to CI matrix (#1069)
Browse files Browse the repository at this point in the history
  • Loading branch information
BilalQamar95 committed Aug 22, 2024
1 parent b27300e commit 714851c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 714851c

Please sign in to comment.