We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b37692 commit cf1e7cbCopy full SHA for cf1e7cb
.circleci/config.yml
@@ -13,6 +13,15 @@ commands:
13
at: ~/react-native-paper
14
15
jobs:
16
+ update-yarn:
17
+ executor: default
18
+ steps:
19
+ - checkout
20
+ - attach_project
21
+ - run:
22
+ name: "Enable Corepack and upgrade Yarn"
23
+ command: |
24
+ sudo npm install --global [email protected]
25
install-dependencies:
26
executor: default
27
steps:
@@ -127,7 +136,10 @@ jobs:
127
136
workflows:
128
137
build-and-test:
129
138
130
- - install-dependencies
139
+ - update-yarn
140
+ - install-dependencies:
141
+ requires:
142
131
143
- lint:
132
144
requires:
133
145
- install-dependencies
.yarnrc.yml
@@ -0,0 +1 @@
1
+nodeLinker: node-modules
0 commit comments