Ensured npm ci is run with --force until we get rid of enzyme

This commit is contained in:
Alejandro Celaya 2022-06-10 20:09:38 +02:00
parent 58f952df8a
commit a63f7e741a
3 changed files with 3 additions and 2 deletions

View file

@ -14,3 +14,4 @@ jobs:
node-version: 16.15
with-mutation-tests: true
publish-coverage: true
force-install: true

View file

@ -19,7 +19,7 @@ jobs:
node-version: 16.15
- name: Build
run: |
npm ci && \
npm ci --force && \
node ./scripts/set-homepage.js /shlink-web-client/${GITHUB_HEAD_REF#refs/heads/} && \
rm src/service-worker.ts && \
npm run build

View file

@ -16,7 +16,7 @@ jobs:
with:
node-version: 16.15
- name: Generate release assets
run: npm ci && VERSION=${GITHUB_REF#refs/tags/v} npm run build:dist
run: npm ci --force && VERSION=${GITHUB_REF#refs/tags/v} npm run build:dist
- name: Publish release with assets
uses: docker://antonyurchenko/git-release:latest
env: