Skip to content

Commit

Permalink
Jsaem2 55 ci switch (#24)
Browse files Browse the repository at this point in the history
* JSAEM 2-55 feat: apply circle-ci

* JSAEM 2-55 fixed: space at the end of file
  • Loading branch information
MichaelCTH authored and ikarasz committed Jan 7, 2020
1 parent c0e7e38 commit 3080d43
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
27 changes: 27 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: 2.1
jobs:
build:
docker:
- image: circleci/node:lts

working_directory: ~/repo

steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ .Branch }}-{{ checksum "package-lock.json" }}
- v1-dependencies-

- run:
name: Install All Dependencies
command: npm install

- run:
name: Run eslint
command: npm run lint

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ .Branch }}-{{ checksum "package-lock.json" }}
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit 3080d43

Please sign in to comment.