RN 추가 후 CI/CD 해결하기 #691
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- 'develop' | |
push: | |
branches: | |
- 'develop' | |
jobs: | |
cancel-workflow: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.6.0 | |
with: | |
access_token: ${{ github.token }} | |
static-check: | |
runs-on: ubuntu-latest | |
needs: cancel-workflow | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'adopt' | |
- name: SetUp Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20.5.0' | |
- name: Install dependencies | |
run: | | |
cd .. | |
yarn install | |
yarn add react-native | |
yarn add react@18.1.0 | |
yarn add @react-native/gradle-plugin | |
yarn add @react-native-community/cli-platform-android | |
cd snutt-android | |
- name: Clean build | |
run: ./gradlew clean | |
- name: Run ktlintDebug | |
run: ./gradlew ktlintMainSourceSetCheck | |
- name: Upload ktlint report | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: ktlint-result | |
path: ./**/build/reports/ktlint/**/*.html | |
build: | |
runs-on: ubuntu-latest | |
needs: static-check | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'adopt' | |
- name: Clean build | |
run: ./gradlew clean | |
- name: Setup google-services.json (Staging) | |
run: | | |
mkdir -p ./app/src/staging | |
cat << EOF > ./app/src/staging/google-services.json | |
${{ secrets.google_services_json_staging }} | |
EOF | |
- name: Setup secrets.xml (Staging) | |
run: | | |
mkdir -p ./app/src/staging/res/values | |
cat << EOF > ./app/src/staging/res/values/secrets.xml | |
${{ secrets.secrets_xml_staging }} | |
EOF | |
- name: Build debug APK | |
run: ./gradlew assembleStagingDebug --stacktrace |