Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,7 @@ jobs:

- name: Install Packages
if: steps.lerna-cache.outputs.cache-hit != 'true' || contains( github.event.pull_request.labels.*.name, 'SKIP_CACHE')
run: yarn install --with-frozen-lockfile

- name: build packages
if: steps.lerna-cache.outputs.cache-hit == 'true'
run: yarn run postinstall
run: yarn install --with-frozen-lockfile --ignore-scripts

- name: Lint Commit Messages
run: |
Expand All @@ -75,6 +71,9 @@ jobs:
- name: Check Source Code Formatting
run: yarn run check-fmt

- name: build packages
run: yarn run postinstall

- name: Check Package Dependencies
run: yarn run check-deps

Expand Down
Loading