Skip to content

Commit

Permalink
test(circleci): migrate to 2.0 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
redgeoff committed Mar 9, 2018
1 parent 3c57dcf commit 798fb63
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 31 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
31 changes: 0 additions & 31 deletions circle.yml

This file was deleted.

0 comments on commit 798fb63

Please sign in to comment.