Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Lint and check types before building (#3424)

authored by

Hailey and committed by
GitHub
9b087b72 40ccb574

+12 -4
+12 -4
.github/workflows/bundle-deploy-eas-update.yml
··· 97 97 echo fingerprint-is-different="false" >> "$GITHUB_OUTPUT" 98 98 fi 99 99 100 + - name: Lint check 101 + run: yarn lint 102 + 103 + - name: Prettier check 104 + run: yarn prettier --check . 105 + 106 + - name: Check & compile i18n 107 + run: yarn intl:build 108 + 109 + - name: Type check 110 + run: yarn typecheck 111 + 100 112 - name: 🔨 Setup EAS 101 113 uses: expo/expo-github-action@v8 102 114 if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}} ··· 112 124 - name: 🪛 Setup jq 113 125 if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}} 114 126 uses: dcarbone/install-jq-action@v2 115 - 116 - - name: 🔤 Compile Translations 117 - if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}} 118 - run: yarn intl:build 119 127 120 128 - name: ✏️ Write environment variables 121 129 if: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different == 'false'}}