diff --git a/.npmignore b/.npmignore index 634b669..01ae6bb 100644 --- a/.npmignore +++ b/.npmignore @@ -1,3 +1,5 @@ -/Example -issue_template.md -/RNCameraExample +/.github +/examples +circle.yml +commitlint.config.js +/android/build diff --git a/circle.yml b/circle.yml index 2069ea1..66771b0 100644 --- a/circle.yml +++ b/circle.yml @@ -6,7 +6,7 @@ jobs: environment: - GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"' - REACT_NATIVE_MAX_WORKERS: 2 - - ANDROID_BUILD_TOOLS_VERSION: "26.0.2" + - ANDROID_BUILD_TOOLS_VERSION: '26.0.2' working_directory: ~/app docker: - image: entria/react-native-android:0.1.82 @@ -27,6 +27,12 @@ jobs: command: | cd android chmod +x ./gradlew && ./gradlew check + - run: + name: Build Sample App + command: | + cd examples/basic/android + yarn + chmod +x ./gradlew && ./gradlew build - deploy: command: | if [ "${CIRCLE_BRANCH}" == "master" ]; then