Skip to content

Commit

Permalink
Add --force flag (#188)
Browse files Browse the repository at this point in the history
* Add --force flag

* Remove rebuild step
  • Loading branch information
fabasoad authored Aug 15, 2022
1 parent a441e0c commit a7a9ba0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@ jobs:
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-
- name: Rebuild node-saas
run: npm rebuild node-saas
- name: Compile
if: ${{ steps.yarn-cache.outputs.cache-hit != 'true' }}
run: yarn install --ignore-scripts
run: yarn install --force --ignore-scripts
- name: Build
run: yarn run build:prod
- name: Deploy to GitHub Pages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
${{ runner.os }}-modules-
- name: Compile
if: ${{ steps.yarn-cache.outputs.cache-hit != 'true' }}
run: yarn install --ignore-scripts
run: yarn install --force --ignore-scripts
- name: Lint
run: yarn run lint
- name: Unit tests
Expand Down

0 comments on commit a7a9ba0

Please sign in to comment.