Skip to content

Commit 9a07db3

Browse files
abueideclaude
andcommitted
feat: add format check to test-fast command
- Run treefmt lint before build and tests - Catches formatting issues early - test:fast now runs: format:check -> build -> unit tests Co-Authored-By: Claude <[email protected]>
1 parent cc8f2fb commit 9a07db3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"typescript": "tsc --noEmit --composite false",
2121
"test": "jest",
2222
"test:unit": "jest --no-coverage",
23-
"test:fast": "yarn build && jest --no-coverage",
23+
"test:fast": "yarn format:check && yarn build && jest --no-coverage",
2424
"test:e2e:android": "yarn e2e build:android && yarn e2e test:android",
2525
"test:e2e:ios": "yarn e2e build:ios && yarn e2e test:ios",
2626
"test:e2e": "yarn test:e2e:android && yarn test:e2e:ios",

0 commit comments

Comments
 (0)