Skip to content

Commit

Permalink
Merge pull request #135 from MeasureAuthoringTool/MAT-6454-npm-audit-…
Browse files Browse the repository at this point in the history
…to-fix-critical-vulns

MAT-6454 npm audit to fix critical vuln Update package-lock.json
  • Loading branch information
mcmcphillips authored Dec 8, 2023
2 parents 6be874f + c07560c commit 48a1e9f
Show file tree
Hide file tree
Showing 3 changed files with 493 additions and 262 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v2-beta
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 20.x

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/unit_test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Use Node.js 16.x
uses: actions/setup-node@v2-beta
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -56,7 +56,7 @@ jobs:
run: npm run-script coverage

- name: Store the coverage report as an artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: coverage
path: coverage/lcov.info
Expand All @@ -67,7 +67,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download coverage artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: coverage

Expand All @@ -83,14 +83,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download coverage artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: coverage

- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
file: lcov.info
fail_ci_if_error: truef
fail_ci_if_error: true
Loading

0 comments on commit 48a1e9f

Please sign in to comment.