We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7c2ba4 commit afa168cCopy full SHA for afa168c
.github/workflows/ci.yml
@@ -53,11 +53,7 @@ jobs:
53
54
- name: Install Packages
55
if: steps.lerna-cache.outputs.cache-hit != 'true' || contains( github.event.pull_request.labels.*.name, 'SKIP_CACHE')
56
- run: yarn install --with-frozen-lockfile
57
-
58
- - name: build packages
59
- if: steps.lerna-cache.outputs.cache-hit == 'true'
60
- run: yarn run postinstall
+ run: yarn install --with-frozen-lockfile --ignore-scripts
61
62
- name: Lint Commit Messages
63
run: |
@@ -78,6 +74,10 @@ jobs:
78
74
- name: Check Package Dependencies
79
75
run: yarn run check-deps
80
76
77
+ - name: build packages
+ if: steps.lerna-cache.outputs.cache-hit == 'true'
+ run: yarn run postinstall
+
81
- name: Unit Test
82
run: yarn run unit-test-changed
83
env:
0 commit comments