Don't alarm on "Email in use" response from Identity /guest
endpoin…
#6424
This file contains 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: support-frontend - prettier | |
on: | |
push: | |
paths: | |
- support-frontend/** | |
jobs: | |
support_frontend_build: | |
name: support-frontend - prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
cache-dependency-path: support-frontend/yarn.lock | |
- name: Install | |
run: yarn | |
working-directory: support-frontend | |
- name: Prettier check | |
run: yarn prettier:check | |
working-directory: support-frontend |