Skip to content

Commit

Permalink
chore(CI): add RSC fixtures to detect changes list (#9703)
Browse files Browse the repository at this point in the history
Currently the RSC smoke tests seem to be failing consistently on
#9649. In debugging, I noticed
that the RSC smoke tests didn't actually run for
#9666 which changed the RSC
fixtures. That's because those files weren't listed in the detect
changes list. Adding them here.
  • Loading branch information
jtoar committed Dec 14, 2023
1 parent 5f1bc64 commit b7115dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/detect-changes/cases/rsc.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ export function rscChanged(changedFiles){
changedFile.startsWith('packages/internal/') ||
changedFile.startsWith('packages/project-config/') ||
changedFile.startsWith('packages/web/') ||
changedFile.startsWith('packages/vite/')
changedFile.startsWith('packages/vite/') ||
changedFile.startsWith('__fixtures__/test-project-rsa') ||
changedFile.startsWith('__fixtures__/test-project-rsc-external-packages')
) {
console.log('RSC change detected:', changedFile)
return true
Expand Down

0 comments on commit b7115dd

Please sign in to comment.