Skip to content

Commit

Permalink
SP-730 Support Node.js 20 and 21
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarzybok-sumoheavy committed Nov 17, 2023
1 parent 4df8d4f commit 4273ca9
Show file tree
Hide file tree
Showing 7 changed files with 6,141 additions and 15,128 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/test.yml → .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 19.x, 20.x, 21.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -60,3 +60,20 @@ jobs:
- run: npm ci
- run: npm run build --if-present
- run: npm run unit

audit:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [ 18.x ]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm audit --audit-level=high
Loading

0 comments on commit 4273ca9

Please sign in to comment.