Skip to content

Commit

Permalink
fix: npm audit (#164)
Browse files Browse the repository at this point in the history
* chore: before immer fix

* chore: surgery

* chore: add npm audit step

* chore: prismjs update

* fix: prismjs remaining issues

* fix: most ssri issues

* fix: last ssri issue

* test: this should fail

* Revert "test: this should fail"

This reverts commit df2b759.
  • Loading branch information
alkalescent authored May 3, 2021
1 parent 30a0b74 commit b5ca393
Show file tree
Hide file tree
Showing 2 changed files with 548 additions and 37,551 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,24 @@ jobs:
${{ runner.OS }}-
- run: npm ci
- run: npm run lint:style
npm-audit:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
node-version: '12'
- uses: actions/[email protected]
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm ci
- run: npm audit
test-ci:
needs: setup
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit b5ca393

Please sign in to comment.