We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62a651c commit 3d0970bCopy full SHA for 3d0970b
.circleci/config.yml
@@ -11,19 +11,19 @@ executors:
11
commands:
12
yarninstall:
13
steps:
14
- - enable_corepack:
15
- name: Enable NodeJS Corepack
16
- command: corepack enable
17
- - install_yarn:
18
- name: Install Yarn with corepack
19
- command: yarn set version stable
20
- restore_cache:
21
name: Restore Yarn Package Cache
22
keys:
23
- yarn-packages-{{ checksum "yarn.lock" }}
24
- run:
25
name: Install Dependencies
26
command: yarn install --frozen-lockfile
+ - run:
+ name: Enable NodeJS Corepack
+ command: corepack enable
+ name: Install Yarn with corepack
+ command: yarn set version stable
27
- save_cache:
28
name: Save Yarn Package Cache
29
key: yarn-packages-{{ checksum "yarn.lock" }}
0 commit comments