@@ -53,7 +53,7 @@ aliases:
53
53
ignore : /.*/
54
54
55
55
- &node_tests
56
- working_directory : ~/yeojz/babel-plugin-transform-assets-import-to-string
56
+ working_directory : ~/project
57
57
steps :
58
58
- checkout
59
59
- restore-cache : *restore_test_cache
@@ -65,7 +65,7 @@ aliases:
65
65
command : npm run test
66
66
67
67
- &defaults
68
- working_directory : ~/yeojz/babel-plugin-transform-assets-import-to-string
68
+ working_directory : ~/project
69
69
docker :
70
70
- image : circleci/node:8
71
71
@@ -74,27 +74,28 @@ aliases:
74
74
- checkout
75
75
- restore-cache : *restore_release_cache
76
76
- run : *install_npm
77
- - run :
78
- name : install conventional-github-releaser
79
- command : npm install --no-save conventional-github-releaser
80
77
- save_cache : *save_release_cache
81
- - run :
82
- name : update github release description
83
- command : npx conventional-github-releaser -p angular
84
78
- run :
85
79
name : build for npm
86
80
command : |
87
81
npm run clean
88
82
npm run build
89
83
- run :
90
- working_directory : ~/yeojz/babel-plugin-transform-assets-import-to-string
84
+ working_directory : ~/project
91
85
name : publish to npm
92
86
command : |
93
87
echo "npm tag = $RUNTIME_NPM_TAG"
94
88
95
89
if [ -z "$CIRCLE_PULL_REQUEST" ]; then
96
90
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
97
91
npm publish --tag $RUNTIME_NPM_TAG
92
+
93
+ {
94
+ npm run update:release-notes
95
+ } || {
96
+ echo "unable to update release notes."
97
+ }
98
+
98
99
else
99
100
echo "skipping publication."
100
101
fi
@@ -118,7 +119,16 @@ jobs:
118
119
npm run lint
119
120
- run :
120
121
name : send coverage report
121
- command : npm run coveralls
122
+ command : |
123
+ if [[ $CIRCLE_PROJECT_USERNAME == $PROJECT_OWNER_NAME ]]; then
124
+ {
125
+ npm run upload:coverage
126
+ } || {
127
+ echo "unable to update coverage."
128
+ }
129
+ else
130
+ echo "skipping coverage uploading."
131
+ fi
122
132
when : on_success
123
133
124
134
node_v6 :
0 commit comments