Skip to content

Commit

Permalink
[ci] add Node matrix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoPennec committed Sep 13, 2023
1 parent 162c1f0 commit a9cdfe8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,17 @@ on:

jobs:
ci:
name: Test with Node ${{ matrix.node }}
runs-on: ubuntu-latest

strategy:
matrix:
node: [ 18, 20 ]
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Run tests
env:
NODE_OPTIONS: "--max_old_space_size=8192"
Expand Down

0 comments on commit a9cdfe8

Please sign in to comment.