Skip to content

Commit

Permalink
Add circleci back
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Jasnowski committed Oct 1, 2018
1 parent 74bff90 commit a3dcbb9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,28 @@
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:10.10

working_directory: ~/repo

steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:

This comment has been minimized.

Copy link
@Abby0106

Abby0106 Dec 6, 2021

x_string()

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

- run: yarn install

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

# run tests!
- run: npm run lint

0 comments on commit a3dcbb9

Please sign in to comment.