Add emoji to GitHub Actions step names for consistency

Several workflows were missing the emoji-prefixed step naming used
elsewhere (e.g. nightly-build.yml, build-submit-ios/android.yml), and
a couple of files that already used emoji had a few gaps. Fills those
in across all workflow files. Job-level `name:` fields are left
untouched since some are pinned as required branch-protection check
names.
This commit is contained in:
Claude
2026-07-26 20:15:45 +00:00
parent d9e76c3954
commit 1c0da2e1cb
16 changed files with 116 additions and 116 deletions
@@ -48,7 +48,7 @@ jobs:
steps.version.outputs.version-changed }}
steps:
- name: Check for EXPO_TOKEN
- name: 🔑 Check for EXPO_TOKEN
run: >
if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then
echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions"
@@ -159,13 +159,13 @@ jobs:
- name: 🔤 Compile translations
uses: ./.github/actions/compile-i18n
- name: Lint check
- name: 🧹 Lint check
run: pnpm lint
- name: Prettier check
- name: 💅 Prettier check
run: pnpm prettier --check .
- name: Type check
- name: 🔎 Type check
run: pnpm typecheck
- name: 🔨 Setup EAS