Skip to content

Commit 4f4ccb8

Browse files
committed
Add step to install dependencies in i18n workflows
1 parent 7bc83eb commit 4f4ccb8

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

Diff for: .github/workflows/check-i18n-task.yml

+3
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,8 @@ jobs:
3131
node-version: '12.14.1'
3232
registry-url: 'https://registry.npmjs.org'
3333

34+
- name: Install dependencies
35+
run: yarn
36+
3437
- name: Check for errors
3538
run: yarn i18n:check

Diff for: .github/workflows/i18n-nightly-push.yml

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
node-version: '12.14.1'
1919
registry-url: 'https://registry.npmjs.org'
2020

21+
- name: Install dependencies
22+
run: yarn
23+
2124
- name: Run i18n:push script
2225
run: yarn run i18n:push
2326
env:

Diff for: .github/workflows/i18n-weekly-pull.yml

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
node-version: '12.14.1'
1919
registry-url: 'https://registry.npmjs.org'
2020

21+
- name: Install dependencies
22+
run: yarn
23+
2124
- name: Run i18n:pull script
2225
run: yarn run i18n:pull
2326
env:

0 commit comments

Comments
 (0)