Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setup Prettier for test/cy code #1198

Merged
merged 9 commits into from
Mar 27, 2024
Prev Previous commit
Next Next commit
Add format just commands in test/cy
dotNomad committed Mar 26, 2024
commit bd78458dc9e7a636ac23ca01180879696b9bbc01
14 changes: 14 additions & 0 deletions test/cy/justfile
Original file line number Diff line number Diff line change
@@ -46,6 +46,20 @@ lint:

npm run lint

format:
#!/usr/bin/env bash
set -eou pipefail
{{ _with_debug }}

npm run format

check-format:
#!/usr/bin/env bash
set -eou pipefail
{{ _with_debug }}

npm run check-format

# Install dependencies
install:
#!/usr/bin/env bash