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

chore(ui-codemods): fix codemods test scripts #1793

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
run: npm run bootstrap
- name: Run vitest unit tests
run: npm run test:vitest
- name: Run codemods unit tests
run: npm run test:codemods
cypress:
name: Cypress component tests
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
"dev": "npm run start:watch",
"test": "ui-scripts test --randomize",
"cy:component": "cypress run --component",
"test:vitest": "vitest --watch=false && npm run test:vitest --workspace=@instructure/ui-codemods",
"test:vitest": "vitest --watch=false",
"test:vitest-watch": "vitest",
"test:codemods": "vitest --watch=false --root=packages/ui-codemods",
"lint": "lerna run lint --stream",
"lint:changes": "npm run lint -- --since HEAD^",
"lint:fix": "lerna run lint:fix --stream",
Expand Down
Loading