Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit

Permalink
feat: integrate circleci (#88)
Browse files Browse the repository at this point in the history
* feat: integrate circleCI
  • Loading branch information
ImmanuelSegol authored Feb 16, 2019
1 parent b2fa64c commit 65241b4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:lts
steps:
- checkout:
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: lint
command: npm run lint
- run:
name: build
command: npm run build

0 comments on commit 65241b4

Please sign in to comment.