We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8a0755 commit a167563Copy full SHA for a167563
packages/google-cloud-dns/.circleci/config.yml
@@ -86,13 +86,8 @@ jobs:
86
- run: &npm_install_and_link
87
name: Install and link the module.
88
command: npm install
89
- - run:
90
- name: Run unit tests.
91
- command: npm test
92
93
- name: Submit coverage data to codecov.
94
- command: node_modules/.bin/codecov
95
- when: always
+ - run: npm test
+ - run: node_modules/.bin/codecov
96
node8:
97
docker:
98
- image: 'node:8'
@@ -179,9 +174,5 @@ jobs:
179
174
- image: 'node:10'
180
175
steps:
181
176
- checkout
182
183
- name: Set NPM authentication.
184
- command: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
185
186
- name: Publish the module to npm.
187
- command: npm publish
177
+ - run: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
178
+ - run: npm publish
0 commit comments