Skip to content

Commit a37469c

Browse files
more npm install
1 parent 556baae commit a37469c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/test_android.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
working-directory: ./Apps/Playground
2424

2525
- name: Gulp (Android)
26-
run: npx gulp buildAndroid
26+
run: |
27+
npm install
28+
npx gulp buildAndroid
2729
working-directory: ./Package
2830

2931
- name: Upload APK

.github/workflows/test_ios.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,7 @@ jobs:
3030
working-directory: ./Apps/Playground
3131

3232
- name: Gulp (iOS)
33-
run: npx gulp buildIOS
33+
run: |
34+
npm install
35+
npx gulp buildIOS
3436
working-directory: ./Package

0 commit comments

Comments
 (0)