Skip to content

Commit

Permalink
try without optional dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
boopathi committed Sep 11, 2024
1 parent f3a9ff8 commit 77f5573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:

- name: Install from network when no cache hit
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --ignore-optional --prefer-offline
run: yarn install --prefer-offline

- name: Install from cache on cache-hit
if: steps.yarn-cache.outputs.cache-hit == 'true'
run: yarn install --ignore-optional --offline
run: yarn install --offline

- name: Format and Lint check
run: yarn check-format && yarn check-tsc && yarn lint && yarn build && yarn check-exports
Expand Down

0 comments on commit 77f5573

Please sign in to comment.