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 fcfcd21 commit 7656fc8Copy full SHA for 7656fc8
.github/workflows/yarn.yaml
@@ -9,5 +9,7 @@ jobs:
9
- uses: actions/setup-node@v4
10
with:
11
node-version: "18.16"
12
- - run: yarn install
+ # we need --ignore-engines because some packages requires node 20 and up in the engine and we are currently stuck on node 18
13
+ # until an upgrade to node 20 is made, which is currently unplanned. @see https://github.com/cypress-io/request/issues/68
14
+ - run: yarn install --ignore-engines
15
- run: yarn test
0 commit comments