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 d07ffeeCopy full SHA for d07ffee
.circleci/config.yml
@@ -13,6 +13,17 @@ 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 corepack enable
25
+ sudo corepack prepare yarn@stable --activate
26
+ yarn --version
27
install-dependencies:
28
executor: default
29
steps:
@@ -127,7 +138,10 @@ jobs:
127
138
workflows:
128
139
build-and-test:
129
140
130
- - install-dependencies
141
+ - update-yarn
142
+ - install-dependencies:
143
+ requires:
144
131
145
- lint:
132
146
requires:
133
147
- install-dependencies
.yarnrc.yml
@@ -0,0 +1 @@
1
+nodeLinker: node-modules
0 commit comments