Skip to content

Commit

Permalink
We should be using CircleCI 2.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
brentlintner committed Sep 2, 2018
1 parent d62315f commit 85eba22
Show file tree
Hide file tree
Showing 3 changed files with 15,915 additions and 17 deletions.
30 changes: 30 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: 2

jobs:
build:
docker:
- image: circleci/node:8-jessie-browsers
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: Reset shallow clone
command: |
[[ ! -s \"$(git rev-parse --git-dir)/shallow\" ]] || git fetch --unshallow
git fetch origin $CIRCLE_BRANCH
- run:
name: Install
command: npm i
- run:
name: Compile
command: |
npm run compile
npm run compile-dev
- run:
name: Test
command: npm run -s test-cov
- save_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
paths:
- node_modules
17 changes: 0 additions & 17 deletions circle.yml

This file was deleted.

Loading

0 comments on commit 85eba22

Please sign in to comment.