Skip to content

Commit a30727a

Browse files
authored
Add maven workflow (#2)
* add: maven workflow dispatch * chore: cd into android/ios * chore: cd into android/ios and npm install
1 parent 18f4162 commit a30727a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/sanity-workflow.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,27 +52,28 @@ jobs:
5252
with:
5353
node-version: ${{ matrix.node }}
5454

55-
- name: Install dependencies
56-
run: npm install
57-
5855
- name: Run sample android tests
5956
run: |
6057
cd android
58+
npm install
6159
npm run sample-test
6260
6361
- name: Run local android tests
6462
run: |
6563
cd android
64+
npm install
6665
npm run sample-local-test
6766
6867
- name: Run sample ios tests
6968
run: |
7069
cd ios
70+
npm install
7171
npm run sample-test
7272
7373
- name: Run local ios tests
7474
run: |
7575
cd ios
76+
npm install
7677
npm run sample-local-test
7778
7879
- if: always()

0 commit comments

Comments
 (0)