Skip to content

Commit a66c213

Browse files
authored
Merge pull request #36 from windingtree/fix/relese-workflow-deps
fix: 🐛 Fixed release workflow script
2 parents 775019a + 810911d commit a66c213

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ jobs:
1818
with:
1919
node-version: "lts/*"
2020
- name: Install dependencies
21-
run: yarn install --frozen-lockfile && yarn --cwd ./examples/client install --frozen-lockfile && yarn --cwd ./examples/manager install --frozen-lockfile
21+
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
2226
- name: Lint
2327
run: yarn lint
2428
- name: Test

0 commit comments

Comments
 (0)