Skip to content

Commit

Permalink
Circleci 2.0 (#24)
Browse files Browse the repository at this point in the history
* chore(package): update gofur to version 1.0.3

* test(circleci): upgrade to 2.0
  • Loading branch information
redgeoff committed Mar 10, 2018
1 parent 38c3e43 commit 07fec8a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 26 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,22 @@
version: 2

jobs:
build:
docker:
- image: circleci/node:8.9.4-stretch-browsers
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm run assert-beautified
- run: npm run jshint
- run: npm run node-full-test
- run: npm run browser-test
- run: npm run browser-coverage-full-test
25 changes: 0 additions & 25 deletions circle.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -46,7 +46,7 @@
"beautify-proj": "^1.0.0",
"chai": "^4.1.0",
"chai-as-promised": "^6.0.0",
"gofur": "1.0.2",
"gofur": "1.0.3",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^5.0.0",
Expand Down

0 comments on commit 07fec8a

Please sign in to comment.