Skip to content

Commit

Permalink
Migrate to CircleCI 2.0, add linting as a test
Browse files Browse the repository at this point in the history
  • Loading branch information
kudos committed May 22, 2018
1 parent 3fb3e01 commit f266a6b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:10.1.0
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- run:
name: Running lint
command: npm run lint
- run:
name: Running tests
command: npm run test
3 changes: 0 additions & 3 deletions circle.yml

This file was deleted.

0 comments on commit f266a6b

Please sign in to comment.