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 5bbdbbcCopy full SHA for 5bbdbbc
.circleci/config.yml
@@ -29,9 +29,11 @@ jobs:
29
- run:
30
name: Install dependencies
31
command: |
32
- yarn install --cwd example --frozen-lockfile
33
- yarn install --cwd docs --frozen-lockfile
34
- yarn install --frozen-lockfile
+ sudo corepack enable
+ yarn set version berry
+ yarn --cwd example --frozen-lockfile
35
+ yarn --cwd docs --frozen-lockfile
36
+ yarn --frozen-lockfile
37
- save_cache:
38
key: dependencies-{{ checksum "package.json" }}
39
paths:
.yarnrc.yml
@@ -0,0 +1 @@
1
+nodeLinker: node-modules
package.json
@@ -162,5 +162,6 @@
162
}
163
]
164
165
- }
+ },
166
+ "packageManager": "[email protected]"
167
0 commit comments