Fix reload issues related to new SignInPage
#456
This file contains hidden or 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: Prettier check | |
on: | |
workflow_call: | |
pull_request: | |
types: [opened, synchronize] | |
branches-ignore: [staging, production] | |
paths: ['**.js', '**.ts', '**.tsx', '**.json', '**.mjs', '**.cjs', 'config/.editorconfig', '.watchmanconfig', '.imgbotconfig'] | |
concurrency: | |
group: ${{ github.ref == 'refs/heads/main' && format('{0}-{1}', github.ref, github.sha) || github.ref }}-prettier | |
cancel-in-progress: true | |
jobs: | |
prettier: | |
name: Prettier check | |
if: ${{ github.actor != 'OSBotify' || github.event_name == 'workflow_call' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
# v4 | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
- name: Setup Node | |
uses: ./.github/actions/composite/setupNode | |
with: | |
IS_DESKTOP_BUILD: true | |
- name: Verify there's no Prettier diff | |
run: | | |
npm run prettier -- --log-level silent | |
if ! git diff --name-only --exit-code; then | |
# shellcheck disable=SC2016 | |
echo 'Error: Prettier diff detected! Please run `npm run prettier` and commit the changes.' | |
exit 1 | |
fi |