Skip to content

Commit

Permalink
Adding basic tests and CircleCI config
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Walter committed May 24, 2018
1 parent 148f4a9 commit 374d65a
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 1,498 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: cypress/base:8

working_directory: ~/repo

steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: npm install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

- run: npm run lint

- run: npm test


Loading

0 comments on commit 374d65a

Please sign in to comment.