Skip to content

Commit

Permalink
chore(ci): Fix CRWA telemetry check (#9865)
Browse files Browse the repository at this point in the history
The check is currently running indefinitely as it is waiting for the
result of a prompt. This PR passes the `--no-yarn-install` flag to
prevent this. That flag was introduced in #9861
  • Loading branch information
Josh-Walker-GM authored and jtoar committed Jan 24, 2024
1 parent e1848ba commit 5e31404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/telemetry_check/check.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ try {
switch (mode) {
case 'crwa':
exitCode = await exec(
`yarn node ./packages/create-redwood-app/dist/create-redwood-app.js ../project-for-telemetry --typescript true --git false`
`yarn node ./packages/create-redwood-app/dist/create-redwood-app.js ../project-for-telemetry --typescript true --git false --no-yarn-install`
)
if (exitCode) {
process.exit(1)
Expand Down

0 comments on commit 5e31404

Please sign in to comment.