Security: JS NPM #63
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Security: JS NPM" | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "30 23 * * *" | |
| jobs: | |
| js-npm-security: | |
| name: JS NPM security audit | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v4 | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: Audit NPM | |
| run: yarn npm audit --environment production --all --recursive |