We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a2dd5d commit 85a515aCopy full SHA for 85a515a
.circleci/config.yml
@@ -65,13 +65,8 @@ jobs:
65
npm install
66
environment:
67
NPM_CONFIG_PREFIX: /home/node/.npm-global
68
- - run:
69
- name: Run unit tests.
70
- command: npm test
71
72
- name: Submit coverage data to codecov.
73
- command: node_modules/.bin/codecov
74
- when: always
+ - run: npm test
+ - run: node_modules/.bin/codecov
75
node8:
76
docker:
77
- image: 'node:8'
@@ -125,9 +120,5 @@ jobs:
125
120
user: node
126
121
steps:
127
122
- checkout
128
129
- name: Set NPM authentication.
130
- command: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
131
132
- name: Publish the module to npm.
133
- command: npm publish
123
+ - run: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
124
+ - run: npm publish
0 commit comments