@@ -12,16 +12,16 @@ jobs:
12
12
- checkout
13
13
- restore_cache : &restore_cache
14
14
keys :
15
- - v0 -yarn-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}}
16
- - v0 -yarn-{{checksum ".circleci/config.yml"}}
15
+ - v1 -yarn-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}}
16
+ - v1 -yarn-{{checksum ".circleci/config.yml"}}
17
17
- run : .circleci/greenkeeper
18
- - run : yarn add -D nyc@11 @oclif/nyc-config@0 mocha-junit-reporter@1 @commitlint/cli@6 @commitlint/config-conventional@6
18
+ - run : yarn add -D nyc@11 @oclif/nyc-config@1 mocha-junit-reporter@1
19
+ - run : ./bin/run --help
19
20
- run : |
20
21
mkdir -p reports
21
22
$NYC yarn test --reporter mocha-junit-reporter
22
23
$NYC report --reporter text-lcov > coverage.lcov
23
24
curl -s https://codecov.io/bash | bash
24
- - run : yarn exec commitlint -- -x @commitlint/config-conventional --from origin/master
25
25
- store_test_results : &store_test_results
26
26
path : ~/cli/reports
27
27
node-8 :
@@ -34,13 +34,13 @@ jobs:
34
34
- add_ssh_keys
35
35
- checkout
36
36
- restore_cache : *restore_cache
37
- - run : yarn global add @oclif/semantic-release@1 semantic-release@12
37
+ - run : yarn global add @oclif/semantic-release@2 semantic-release@15
38
38
- run : yarn --frozen-lockfile
39
39
- run : |
40
40
export PATH=/usr/local/share/.config/yarn/global/node_modules/.bin:$PATH
41
41
semantic-release -e @oclif/semantic-release
42
42
- save_cache :
43
- key : v0 -yarn-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}}
43
+ key : v1 -yarn-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}}
44
44
paths :
45
45
- ~/cli/node_modules
46
46
- /usr/local/share/.cache/yarn
0 commit comments