chore(site): add type check on lint (#7778)

This commit is contained in:
Bruno Quaresma 2023-06-01 15:45:15 -03:00 committed by GitHub
parent 1a615778e6
commit 62b2560bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -13,8 +13,9 @@
"format:types": "prettier --write 'src/api/typesGenerated.ts'",
"format:write": "prettier --write '../**/*.{css,html,js,json,jsx,md,ts,tsx,yaml,yml}'",
"format:write:only": "prettier --write",
"lint": "jest --selectProjects lint",
"lint": "yarn typegen && yarn run lint:types && jest --selectProjects lint",
"lint:fix": "FIX=true yarn lint",
"lint:types": "tsc --noEmit",
"playwright:install": "playwright install --with-deps chromium",
"playwright:test": "playwright test --config=e2e/playwright.config.ts",
"storybook": "STORYBOOK=true storybook dev -p 6006",