Skip to content

Commit

Permalink
Merge pull request #84 from brave/features/no-npm-audit-on-bots
Browse files Browse the repository at this point in the history
workflows: no audit on bots
  • Loading branch information
diracdeltas authored Oct 8, 2024
2 parents c98c6c5 + 2c394df commit bd33ef2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: audit
run: npm audit --production
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
- name: Run scripts
run: |
npm run lint
npm audit --production
npm test

0 comments on commit bd33ef2

Please sign in to comment.