|
|
|
@ -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 |
|
|
|
|
|
|
|
|