mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-24 04:33:10 +00:00
This reverts commit e347b733c1.
This commit is contained in:
20
.circleci/config.yml
Normal file
20
.circleci/config.yml
Normal 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
|
||||
Reference in New Issue
Block a user