Skip to content

Commit

Permalink
Test against node 18 and node 20 (zotero#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvolz authored Mar 13, 2024
1 parent dc0be9c commit 2a7d975
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ jobs:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [18, 20]

steps:
- uses: actions/checkout@v2

Expand All @@ -13,10 +17,10 @@ jobs:
- run: git submodule update --init --depth=1 modules/zotero-schema
- run: git submodule update --init --depth=1 modules/translators

- name: Install Node
- name: Install Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: 16
node-version: ${{ matrix.node-version }}

- run: npm ci
- run: npm test
- run: npm test

0 comments on commit 2a7d975

Please sign in to comment.