Skip to content

Commit ecf4055

Browse files
feat: add yarn install step in action
1 parent 44d6402 commit ecf4055

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/pr.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
node-version-file: '.nvmrc'
2424
cache: 'yarn'
2525

26+
- run: yarn install --immutable
27+
2628
- run: yarn bootstrap
2729

2830
lint:
@@ -44,6 +46,7 @@ jobs:
4446
node-version-file: '.nvmrc'
4547
cache: 'yarn'
4648

49+
- run: yarn install --immutable
4750
- run: yarn lint
4851
- run: yarn typescript
4952

@@ -65,6 +68,8 @@ jobs:
6568
with:
6669
node-version-file: '.nvmrc'
6770
cache: 'yarn'
71+
72+
- run: yarn install --immutable
6873
- run: yarn test
6974

7075
ios:
@@ -103,6 +108,7 @@ jobs:
103108
node-version-file: '.nvmrc'
104109
cache: 'yarn'
105110

111+
- run: yarn install --immutable
106112
- run: yarn e2e:reset
107113
- run: yarn bootstrap
108114
- run: yarn e2e:build:ios:release
@@ -139,6 +145,9 @@ jobs:
139145
key: avd-31-arm64-macos
140146

141147
- name: Install dependencies
148+
run: yarn install --immutable
149+
150+
- name: Bootstrap
142151
run: yarn bootstrap
143152

144153
- name: Build Android app

0 commit comments

Comments
 (0)