Skip to content

Commit

Permalink
Merge pull request #96 from mwarzybok-sumoheavy/feature/SP-730
Browse files Browse the repository at this point in the history
SP-730 Support Node.js 20 and 21
  • Loading branch information
bobbrodie authored Nov 26, 2023
2 parents 4df8d4f + 4273ca9 commit 59bd96b
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 59bd96b

Please sign in to comment.