Skip to content

Commit

Permalink
Disable npm audit in CI, skip cloud npm install by default
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswilty committed Oct 22, 2024
1 parent 3c399d5 commit 9195c51
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backend-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
cache-dependency-path: './backend/package-lock.json'
- name: Install dependencies
run: |
npm ci
npm ci --no-audit
- name: Run job
run: |
npx eslint .
Expand All @@ -58,7 +58,7 @@ jobs:
cache-dependency-path: './backend/package-lock.json'
- name: Install dependencies
run: |
npm ci
npm ci --no-audit
- name: Run job
run: |
npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cache-dependency-path: './cloud/package-lock.json'
- name: Install dependencies
run: |
npm ci
npm ci --no-audit
- name: Run job
run: |
npm run codecheck
4 changes: 2 additions & 2 deletions .github/workflows/frontend-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
cache-dependency-path: './frontend/package-lock.json'
- name: Install dependencies
run: |
npm ci
npm ci --no-audit
- name: Run job
run: |
npx eslint .
Expand All @@ -59,7 +59,7 @@ jobs:
cache-dependency-path: './frontend/package-lock.json'
- name: Install dependencies
run: |
npm ci
npm ci --no-audit
- name: Run job
run: |
npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/k6-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cache-dependency-path: './k6/package-lock.json'
- name: Install dependencies
run: |
npm ci
npm ci --no-audit
- name: Run job
run: |
npx eslint .
Expand Down

0 comments on commit 9195c51

Please sign in to comment.