Skip to content

Commit

Permalink
feat(circl-flow-eslint): fix circle ci yml file name
Browse files Browse the repository at this point in the history
  • Loading branch information
jgcmarins committed Jun 26, 2018
1 parent 44ac820 commit 7d78542
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
version: 2
executorType: docker
jobs:
build:
resource_class: large
environment:
- GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
- REACT_NATIVE_MAX_WORKERS: 2
- ANDROID_BUILD_TOOLS_VERSION: "26.0.2"
working_directory: ~/app
docker:
- image: entria/react-native-android:0.1.72
steps:
- checkout
- restore_cache:
keys:
- v1-npm-{{ .Branch }}-{{ checksum "yarn.lock" }}
- v1-npm
- run:
name: Install Dependencies
command: yarn install
- run:
name: Lint
command: yarn lint
- run:
name: Run Checks
command: |
cd android
chmod +x ./gradlew && ./gradlew check
- save_cache:
key: v1-npm
paths:
- node_modules/
- save_cache:
key: v1-npm-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- node_modules/

0 comments on commit 7d78542

Please sign in to comment.