-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'try/setupScenario-multiple-tests' of github.com:dac09/r…
…edwood into try/setupScenario-multiple-tests * 'try/setupScenario-multiple-tests' of github.com:dac09/redwood: (235 commits) chore(project-config): switch to vitest (#9864) chore(ci): Fix CRWA telemetry check (#9865) chore(crwa): update e2e test to handle yarn install patch (#9862) feat(crwa): Always install using yarn v4 (#9861) fix(cli): Skip Studio when running `rw upgrade` (#9860) fix(studio): Upgrade to 11.0.1 and enable web-side (#9858) feat(server file): add `createServer` (#9845) chore(crwa): set `REDWOOD_CI` and `REDWOOD_DISABLE_TELEMETRY` (#9857) Fix(crwa): Exit 0 after Quit install (#9856) chore(crwa): switch to vitest (#9855) chore(api): Switch to use vitest over jest (#9853) fix(server): ensure consistency between CLI serve entrypoints regarding help and strict (#9809) Improve how the api-server watch command works (#9841) docs(typo): correct grammar in realtime docs (#9850) Add support for Prisma Bytes and GraphQL scalar Byte (#9847) packages/cli: Switch from substr (deprecated) to slice (#9849) mapPrismaScalarToPagePropTsType: Fix Decimal test case (#9846) chore(build): Avoid prebuilding api side, instead use an esbuild plugin (#9767) Fix url query param encoding (#9844) chore(fwtools): handle existing resolutions in tarsync (#9840) ...
- Loading branch information
Showing
1,118 changed files
with
63,244 additions
and
53,882 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
58 changes: 0 additions & 58 deletions
58
.github/actions/check_test_project_fixture/check_test_project_fixture.mjs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/** | ||
* Detects if the given file path points to a code file (as apposed to a docs | ||
* file) | ||
*/ | ||
function isCodeFile(filePath) { | ||
if (filePath.startsWith('docs')) { | ||
return false | ||
} | ||
|
||
if ( | ||
[ | ||
'CHANGELOG.md', | ||
'CODE_OF_CONDUCT.md', | ||
'CONTRIBUTING.md', | ||
'CONTRIBUTORS.md', | ||
'LICENSE', | ||
'README.md', | ||
'SECURITY.md', | ||
].includes(filePath) | ||
) { | ||
return false | ||
} | ||
|
||
return true | ||
} | ||
|
||
/** | ||
* Checks if the given array of file paths contains any files with potential | ||
* code changes | ||
*/ | ||
export function hasCodeChanges(changedFiles) { | ||
return changedFiles.some((file) => { | ||
if (isCodeFile(file)) { | ||
console.log(`Found code file: ${file}`) | ||
return true | ||
} | ||
|
||
return false | ||
}) | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.