Browse Source

Revert "Removed circle CI (#4236)" (#4253)

This reverts commit e347b733c1.
main
dan 3 years ago
committed by GitHub
parent
commit
4e20db714b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      .circleci/config.yml

20
.circleci/config.yml

@ -0,0 +1,20 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:12
steps:
- checkout
- restore_cache:
keys:
- dependencies-{{ checksum "yarn.lock" }}
- run:
name: Install
command: yarn install --pure-lockfile
- save_cache:
paths:
- node_modules
key: dependencies-{{ checksum "yarn.lock" }}
- run:
name: Check Prettier, ESLint, Flow
command: yarn ci-check
Loading…
Cancel
Save