Skip to content

Commit 85a515a

Browse files
JustinBeckwithalexander-fenster
authored andcommittedJul 10, 2018
fix: drop support for node.js 4.x and 9.x (#244)
1 parent 0a2dd5d commit 85a515a

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed
 

‎.circleci/config.yml

+4-13
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,8 @@ jobs:
6565
npm install
6666
environment:
6767
NPM_CONFIG_PREFIX: /home/node/.npm-global
68-
- run:
69-
name: Run unit tests.
70-
command: npm test
71-
- run:
72-
name: Submit coverage data to codecov.
73-
command: node_modules/.bin/codecov
74-
when: always
68+
- run: npm test
69+
- run: node_modules/.bin/codecov
7570
node8:
7671
docker:
7772
- image: 'node:8'
@@ -125,9 +120,5 @@ jobs:
125120
user: node
126121
steps:
127122
- checkout
128-
- run:
129-
name: Set NPM authentication.
130-
command: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
131-
- run:
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

Comments
 (0)
Please sign in to comment.