We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 775019a + 810911d commit a66c213Copy full SHA for a66c213
.github/workflows/release.yml
@@ -18,7 +18,11 @@ jobs:
18
with:
19
node-version: "lts/*"
20
- name: Install dependencies
21
- run: yarn install --frozen-lockfile && yarn --cwd ./examples/client install --frozen-lockfile && yarn --cwd ./examples/manager install --frozen-lockfile
+ run: |
22
+ yarn install --frozen-lockfile && \
23
+ yarn --cwd ./examples/client install --frozen-lockfile && \
24
+ yarn --cwd ./examples/manager install --frozen-lockfile && \
25
+ yarn --cwd ./examples/react-libs install --frozen-lockfile
26
- name: Lint
27
run: yarn lint
28
- name: Test
0 commit comments