Skip to content

Commit

Permalink
circleci 2
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1504 committed Aug 26, 2018
1 parent ba8e64f commit a42530a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2

jobs:
build:
parallelism: 1
docker:
- image: circleci/node:10
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run: git submodule sync --recursive && git submodule update --recursive --init
- run: npm i
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run: npm test
- run: npm run benchmark
10 changes: 0 additions & 10 deletions circle.yml

This file was deleted.

0 comments on commit a42530a

Please sign in to comment.