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

fix: Remove incompatible vitest flag from test:ci #4777

Merged
merged 2 commits into from Jan 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -6,8 +6,8 @@
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm",
"install:csb": "pnpm install --frozen-lockfile",
"test": "pnpm run test:ci",
"test:ci": "pnpm run test:format && pnpm run test:eslint && pnpm run test:jest --collectCoverage false && pnpm run typecheck",
"test:react:17": "pnpm --filter \"./packages/react-*\" --no-bail run test:jest --collectCoverage false",
"test:ci": "pnpm run test:format && pnpm run test:eslint && pnpm run test:jest && pnpm run typecheck",
"test:react:17": "pnpm --filter \"./packages/react-*\" --no-bail run test:jest",
"test:eslint": "pnpm --filter \"./packages/**\" --no-bail run test:eslint",
"test:format": "pnpm run prettier --check",
"test:jest": "pnpm --filter \"./packages/**\" --no-bail run test:jest",
Expand Down