Browse Source

Add circle ci config

main
jxom 7 years ago
parent
commit
fd35a73229
  1. 13
      .circleci/config.yml

13
.circleci/config.yml

@ -0,0 +1,13 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- checkout
- run:
name: Install
command: npm install
- run:
name: Check Prettier, ESLint, Flow
command: npm run ci-check
Loading…
Cancel
Save