Skip to content

Commit

Permalink
Lint and check types before building (#3424)
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok authored Apr 5, 2024
1 parent 40ccb57 commit 9b087b7
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/bundle-deploy-eas-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'}}
Expand All @@ -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: |
Expand Down

0 comments on commit 9b087b7

Please sign in to comment.