Skip to content

Commit 00ccd93

Browse files
JustinBeckwithalexander-fenster
authored andcommitted
fix: drop support for node.js 4.x and 9.x (#244)
1 parent bc23465 commit 00ccd93

1 file changed

Lines changed: 4 additions & 13 deletions

File tree

handwritten/firestore/.circleci/config.yml

Lines changed: 4 additions & 13 deletions
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)