diff options
author | Hailey <me@haileyok.com> | 2024-04-04 23:15:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-04 23:15:59 -0700 |
commit | 9b087b721dee0a6a33bb85ac5098989ab965d658 (patch) | |
tree | 1d63f9e29165c0aa5bca88d3fa4df881992d85ac | |
parent | 40ccb574b8bc0b81088b0c0972df3ce0cb4a2f84 (diff) | |
download | voidsky-9b087b721dee0a6a33bb85ac5098989ab965d658.tar.zst |
Lint and check types before building (#3424)
-rw-r--r-- | .github/workflows/bundle-deploy-eas-update.yml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml index e12690789..6200db64a 100644 --- a/.github/workflows/bundle-deploy-eas-update.yml +++ b/.github/workflows/bundle-deploy-eas-update.yml @@ -97,6 +97,18 @@ jobs: echo fingerprint-is-different="false" >> "$GITHUB_OUTPUT" fi + - name: Lint check + run: yarn lint + + - name: Prettier check + run: yarn prettier --check . + + - name: Check & compile i18n + run: yarn intl:build + + - name: Type check + run: yarn typecheck + - name: 🔨 Setup EAS uses: expo/expo-github-action@v8 if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}} @@ -113,10 +125,6 @@ jobs: if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}} uses: dcarbone/install-jq-action@v2 - - name: 🔤 Compile Translations - if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}} - run: yarn intl:build - - name: ✏️ Write environment variables if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}} run: | |