Skip to content

Commit

Permalink
10.0.1 (#112)
Browse files Browse the repository at this point in the history
* Point changelog to GitHub

* Add node 13 check

* Bump deps

* Update config.yml
  • Loading branch information
tclindner authored Dec 6, 2019
1 parent 5755d4d commit ef5196b
Show file tree
Hide file tree
Showing 4 changed files with 420 additions and 890 deletions.
42 changes: 25 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,61 +3,62 @@ jobs:
build:
docker:
- image: circleci/node:8
working_directory: ~/repo
steps:
- checkout
- run: npm install
- run: npm run lint
- persist_to_workspace:
root: ~/repo
paths: .
root: ~/
paths:
- project
test-node8:
docker:
- image: circleci/node:8
working_directory: ~/repo
steps:
- attach_workspace:
at: ~/repo
at: ~/
- run: npm test
test-node9:
docker:
- image: circleci/node:9
working_directory: ~/repo
steps:
- attach_workspace:
at: ~/repo
at: ~/
- run: npm test
test-node10:
docker:
- image: circleci/node:10
working_directory: ~/repo
steps:
- attach_workspace:
at: ~/repo
at: ~/
- run: npm test
test-node11:
docker:
- image: circleci/node:11
working_directory: ~/repo
steps:
- attach_workspace:
at: ~/repo
at: ~/
- run: npm test
test-node12:
docker:
- image: circleci/node:12
working_directory: ~/repo
steps:
- attach_workspace:
at: ~/repo
at: ~/
- run: npm test
test-node13:
docker:
- image: circleci/node:13
steps:
- attach_workspace:
at: ~/
- run: npm test
publish-beta:
docker:
- image: circleci/node:10
working_directory: ~/repo
steps:
- attach_workspace:
at: ~/repo
at: ~/
- run:
name: Authenticate with registry
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
Expand All @@ -67,10 +68,9 @@ jobs:
publish-stable:
docker:
- image: circleci/node:10
working_directory: ~/repo
steps:
- attach_workspace:
at: ~/repo
at: ~/
- run:
name: Authenticate with registry
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
Expand Down Expand Up @@ -116,13 +116,20 @@ workflows:
filters:
tags:
only: /.*/
- test-node13:
requires:
- build
filters:
tags:
only: /.*/
- publish-beta:
requires:
- test-node8
- test-node9
- test-node10
- test-node11
- test-node12
- test-node13
filters:
tags:
only: /^v\d*\.\d*\.\d*-beta\.\d*$/
Expand All @@ -136,6 +143,7 @@ workflows:
- test-node10
- test-node11
- test-node12
- test-node13
filters:
tags:
only: /^v\d*\.\d*\.\d*$/
Expand Down
Loading

0 comments on commit ef5196b

Please sign in to comment.