Skip to content

Commit 72cf7fc

Browse files
authoredMar 9, 2019
Merge pull request #22 from yeojz/chore-update-ci-config
chore: update ci config
2 parents cc05cae + d4b8ea8 commit 72cf7fc

File tree

2 files changed

+23
-12
lines changed

2 files changed

+23
-12
lines changed
 

‎.circleci/config.yml

+20-10
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ aliases:
5353
ignore: /.*/
5454

5555
- &node_tests
56-
working_directory: ~/yeojz/babel-plugin-transform-assets-import-to-string
56+
working_directory: ~/project
5757
steps:
5858
- checkout
5959
- restore-cache: *restore_test_cache
@@ -65,7 +65,7 @@ aliases:
6565
command: npm run test
6666

6767
- &defaults
68-
working_directory: ~/yeojz/babel-plugin-transform-assets-import-to-string
68+
working_directory: ~/project
6969
docker:
7070
- image: circleci/node:8
7171

@@ -74,27 +74,28 @@ aliases:
7474
- checkout
7575
- restore-cache: *restore_release_cache
7676
- run: *install_npm
77-
- run:
78-
name: install conventional-github-releaser
79-
command: npm install --no-save conventional-github-releaser
8077
- save_cache: *save_release_cache
81-
- run:
82-
name: update github release description
83-
command: npx conventional-github-releaser -p angular
8478
- run:
8579
name: build for npm
8680
command: |
8781
npm run clean
8882
npm run build
8983
- run:
90-
working_directory: ~/yeojz/babel-plugin-transform-assets-import-to-string
84+
working_directory: ~/project
9185
name: publish to npm
9286
command: |
9387
echo "npm tag = $RUNTIME_NPM_TAG"
9488
9589
if [ -z "$CIRCLE_PULL_REQUEST" ]; then
9690
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
9791
npm publish --tag $RUNTIME_NPM_TAG
92+
93+
{
94+
npm run update:release-notes
95+
} || {
96+
echo "unable to update release notes."
97+
}
98+
9899
else
99100
echo "skipping publication."
100101
fi
@@ -118,7 +119,16 @@ jobs:
118119
npm run lint
119120
- run:
120121
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
122132
when: on_success
123133

124134
node_v6:

‎package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
"build": "cross-env NODE_ENV=production babel src --out-dir lib",
88
"clean": "rimraf lib coverage .nyc_output",
99
"coverage": "cross-env NODE_ENV=test nyc report --reporter=lcov",
10-
"coveralls": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
1110
"lint": "eslint --ext js src test/**/*.spec.*",
1211
"test": "cross-env NODE_ENV=test npm run test:run",
1312
"test:run": "nyc --reporter=text-summary mocha 'test/**/*.spec.js'",
14-
"test:watch": "npm run test -- -- --watch"
13+
"test:watch": "npm run test -- -- --watch",
14+
"update:release-notes": "npx conventional-github-releaser -p angular",
15+
"upload:coverage": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls"
1516
},
1617
"repository": {
1718
"type": "git",

0 commit comments

Comments
 (0)
Please sign in to comment.