Skip to content

Commit

Permalink
chore: Upgrade to circleci v2 (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
tleunen authored Sep 6, 2018
1 parent c576c60 commit fc4bd23
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 11 deletions.
57 changes: 57 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
version: 2
jobs:
test_with_node_6:
docker:
- image: circleci/node:6
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- run:
name: Test
command: npm test
test_with_node_8:
docker:
- image: circleci/node:8
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- run:
name: Test
command: npm test
test_with_node_9:
docker:
- image: circleci/node:9
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- run:
name: Test
command: npm test
test_with_node_10:
docker:
- image: circleci/node:10
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- run:
name: Test
command: npm test
- run:
name: Deploy coverage
command: bash <(curl -s https://codecov.io/bash)
workflows:
version: 2
test_all:
jobs:
- test_with_node_6
- test_with_node_8
- test_with_node_9
- test_with_node_10
11 changes: 0 additions & 11 deletions circle.yml

This file was deleted.

0 comments on commit fc4bd23

Please sign in to comment.