@@ -426,8 +426,8 @@ gh pr create # Include testing summary from agent
426426
427427- [ ] RuboCop passes (` bundle exec rubocop ` )
428428- [ ] RSpec unit tests pass (` rake run_rspec:gem ` )
429- - [ ] Jest tests pass (` yarn run test` )
430- - [ ] TypeScript compiles (` yarn run type-check` )
429+ - [ ] Jest tests pass (` pnpm run test` )
430+ - [ ] TypeScript compiles (` pnpm run type-check` )
431431- [ ] RBS validation passes (` rake rbs:validate ` )
432432- [ ] Prettier formatting applied (` rake autofix ` )
433433
@@ -444,19 +444,19 @@ gh pr create # Include testing summary from agent
444444
445445#### If JS/TS files changed:
446446
447- - [ ] Run tests locally: ` yarn run test`
448- - [ ] Build succeeds: ` yarn run build`
447+ - [ ] Run tests locally: ` pnpm run test`
448+ - [ ] Build succeeds: ` pnpm run build`
449449- [ ] Test in browser: ` cd spec/dummy && bin/dev `
450450- [ ] Check browser console for errors
451451- [ ] If SSR code changed: Verify SSR output in page source
452452
453453#### If build configs changed:
454454
455- - [ ] ** MANDATORY** : Clean install test: ` rm -rf node_modules && yarn install --frozen-lockfile `
456- - [ ] ** MANDATORY** : Build test: ` yarn run build && ls -la packages/react-on-rails/lib/`
457- - [ ] ** MANDATORY** : Prepack test: ` yarn nps build.prepack`
458- - [ ] ** MANDATORY** : yalc publish test: ` yarn run yalc:publish`
459- - [ ] Workspace linking: ` yarn workspaces info`
455+ - [ ] ** MANDATORY** : Clean install test: ` rm -rf node_modules && pnpm install --frozen-lockfile `
456+ - [ ] ** MANDATORY** : Build test: ` pnpm run build && ls -la packages/react-on-rails/lib/`
457+ - [ ] ** MANDATORY** : Prepack test: ` pnpm nps build.prepack`
458+ - [ ] ** MANDATORY** : yalc publish test: ` pnpm run yalc:publish`
459+ - [ ] Workspace linking: ` pnpm workspaces info`
460460- [ ] Full test suite: ` bundle exec rake `
461461
462462#### If webpack configs changed:
@@ -479,7 +479,7 @@ gh pr create # Include testing summary from agent
479479
480480#### If user-facing behavior changed (React components, SSR, view helpers):
481481
482- - [ ] Run Playwright E2E tests: ` cd spec/dummy && yarn test:e2e `
482+ - [ ] Run Playwright E2E tests: ` cd spec/dummy && pnpm test:e2e `
483483- [ ] Verify components render in browser
484484- [ ] Check server-side rendering in view source
485485- [ ] No JavaScript console errors
0 commit comments