Disable Prettier check in CI (#1619)

Disables `prettier:check` until discrepancies are handled in
https://github.com/webrecorder/browsertrix-cloud/issues/1618 so that
formatting issues don't fail CI runs.
This commit is contained in:
sua yoo 2024-03-20 15:01:51 -07:00 committed by GitHub
parent d2862ff797
commit 05e03e0b90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,9 @@ jobs:
run: yarn lint:check
- name: Format
working-directory: frontend
run: yarn format:check
# TODO Reenable when https://github.com/webrecorder/browsertrix-cloud/issues/1618 is addressed
# run: yarn format:check
run: yarn prettier --list-different .
- name: Unit tests
working-directory: frontend
run: yarn test