Skip to content

Commit 423958a

Browse files
build: use latest yarn
1 parent 1eabf6d commit 423958a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.circleci/config.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
keys:
1010
- v1-dependencies-{{ checksum "yarn.lock" }}
1111
- v1-dependencies-
12-
- run: yarn install
12+
- run: npx yarn install
1313
- save_cache:
1414
paths:
1515
- node_modules
1616
key: v1-dependencies-{{ checksum "yarn.lock" }}
17-
- run: yarn prettier:check
18-
- run: yarn build
19-
- run: yarn test
17+
- run: npx yarn prettier:check
18+
- run: npx yarn build
19+
- run: npx yarn test
2020
release:
2121
docker:
2222
- image: circleci/node:10.15
@@ -26,8 +26,8 @@ jobs:
2626
keys:
2727
- v1-dependencies-{{ checksum "yarn.lock" }}
2828
- v1-dependencies-
29-
- run: yarn install
30-
- run: yarn build
29+
- run: npx yarn install
30+
- run: npx yarn build
3131
- run: npx semantic-release
3232
workflows:
3333
version: 2

0 commit comments

Comments
 (0)