diff options
author | Simon L <szaimen@e.mail.de> | 2023-04-28 18:53:39 +0200 |
---|---|---|
committer | Simon L <szaimen@e.mail.de> | 2023-04-28 18:58:54 +0200 |
commit | d2a242de078bf3a070ef7898c281b73a15a9c6f0 (patch) | |
tree | 0c817df7048c798761887610dace4d4edf5f3a61 /.github/workflows/npm-audit-fix.yml | |
parent | 05573be4fcce587e4b8f8e907cc089f54c14398e (diff) | |
download | nextcloud-server-d2a242de078bf3a070ef7898c281b73a15a9c6f0.tar.gz nextcloud-server-d2a242de078bf3a070ef7898c281b73a15a9c6f0.zip |
update npm-audit-fix
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to '.github/workflows/npm-audit-fix.yml')
-rw-r--r-- | .github/workflows/npm-audit-fix.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/npm-audit-fix.yml b/.github/workflows/npm-audit-fix.yml index 2632da4f7c5..dededbc97ff 100644 --- a/.github/workflows/npm-audit-fix.yml +++ b/.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 |