We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c57fc7d commit 7468794Copy full SHA for 7468794
system-tests/lib/dep-installer/yarn.ts
@@ -29,6 +29,11 @@ export function getYarnCommand (opts: {
29
// @see https://github.com/yarnpkg/yarn/issues/6407
30
cmd += ' --update-checksums'
31
32
+ // FIXME: Currently with Electron 27, we use Node 18.17.1. Angular 18 dependencies need at least Node 18.19.1
33
+ // which throws an install error on incompatible node version. Once we upgrade to Electron 29, the below line can be removed.
34
+ // Remove this flag when https://github.com/cypress-io/cypress/issues/29547 is complete.
35
+ cmd += ' --ignore-engines'
36
+
37
// in CircleCI, this offline cache can be used
38
if (opts.isCI) cmd += ` --cache-folder=${homedir()}/.yarn`
39
else cmd += ` --cache-folder=${path.join(tempDir, 'cy-system-tests-yarn-cache', String(Date.now()))}`
0 commit comments