Skip to content

Commit 37dd30a

Browse files
JustinBeckwithalexander-fenster
authored andcommitted
chore: cleanup CircleCI config (#17)
* fix: drop support for node.js 4.x and 9.x * moar fixing
1 parent a286f12 commit 37dd30a

File tree

1 file changed

+4
-22
lines changed

1 file changed

+4
-22
lines changed

packages/google-cloud-redis/.circleci/config.yml

+4-22
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,18 @@ workflows:
99
only: /.*/
1010
- node8:
1111
filters: *all_commits
12-
- node9:
13-
filters: *all_commits
1412
- node10:
1513
filters: *all_commits
1614
- lint:
1715
requires:
1816
- node6
1917
- node8
20-
- node9
2118
- node10
2219
filters: *all_commits
2320
- docs:
2421
requires:
2522
- node6
2623
- node8
27-
- node9
2824
- node10
2925
filters: *all_commits
3026
- publish_npm:
@@ -69,23 +65,13 @@ jobs:
6965
npm install
7066
environment:
7167
NPM_CONFIG_PREFIX: /home/node/.npm-global
72-
- run:
73-
name: Run unit tests.
74-
command: npm test
75-
- run:
76-
name: Submit coverage data to codecov.
77-
command: node_modules/.bin/codecov
78-
when: always
68+
- run: npm test
69+
- run: node_modules/.bin/codecov
7970
node8:
8071
docker:
8172
- image: 'node:8'
8273
user: node
8374
steps: *unit_tests_steps
84-
node9:
85-
docker:
86-
- image: 'node:9'
87-
user: node
88-
steps: *unit_tests_steps
8975
node10:
9076
docker:
9177
- image: 'node:10'
@@ -121,9 +107,5 @@ jobs:
121107
user: node
122108
steps:
123109
- checkout
124-
- run:
125-
name: Set NPM authentication.
126-
command: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
127-
- run:
128-
name: Publish the module to npm.
129-
command: npm publish --access=public
110+
- run: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
111+
- run: npm publish --access=public

0 commit comments

Comments
 (0)