Browse Source

Merge pull request #37975 from nextcloud/enh/noid/update-npm-audit-fix

update npm-audit-fix
pull/37981/head
Simon L 3 years ago
committed by GitHub
parent
commit
d6847a9757
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/npm-audit-fix.yml

6
.github/workflows/npm-audit-fix.yml

@ -43,9 +43,13 @@ jobs:
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Fix npm audit, run npm ci and npm run build
- name: Fix npm audit
run: |
npm audit fix
- name: Run npm ci and npm run build
if: always()
run: |
npm ci
npm run build --if-present

Loading…
Cancel
Save