File tree 5 files changed +8738
-9778
lines changed
5 files changed +8738
-9778
lines changed Original file line number Diff line number Diff line change 1
- version : 2
1
+ version : 2.1
2
2
jobs :
3
3
build :
4
4
machine : true
@@ -28,26 +28,26 @@ jobs:
28
28
- /opt/circleci/.nvm
29
29
key : v1-nvm-{{ checksum ".nvmrc" }}
30
30
- run :
31
- name : install yarn
32
- command : npm install -g yarn
31
+ name : install pnpm
32
+ command : npm install -g pnpm
33
33
- restore_cache :
34
34
keys :
35
- - v1-dependencies-{{ checksum "package.json " }}
35
+ - v1-dependencies-{{ checksum "pnpm-lock.yaml " }}
36
36
# fallback to using the latest cache if no exact match is found
37
37
- v1-dependencies-
38
38
- run :
39
39
name : install
40
- command : NODE_ENV=development yarn
40
+ command : NODE_ENV=development pnpm install
41
41
- save_cache :
42
42
paths :
43
43
- node_modules
44
- key : v1-dependencies-{{ checksum "package.json " }}
44
+ key : v1-dependencies-{{ checksum "pnpm-lock.yaml " }}
45
45
# clean
46
46
- run : docker network prune --force
47
47
- run : npx commitlint-circle
48
- - run : yarn lint
49
- - run : yarn build
50
- - run : yarn test
48
+ - run : pnpm run lint
49
+ - run : pnpm run build
50
+ - run : pnpm run test
51
51
- run :
52
52
name : release
53
53
command : npm run semantic-release || true
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
. " $( dirname " $0 " ) /_/husky.sh"
3
3
4
- yarn commitlint --edit $1
4
+ pnpm exec commitlint --edit $1
You can’t perform that action at this time.
0 commit comments