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

This reverts commit e347b733c1.
This commit is contained in:
dan
2022-01-28 19:52:13 +00:00
committed by GitHub
parent e1dcbffde1
commit 4e20db714b

20
.circleci/config.yml Normal file
View File

@@ -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