Skip to content

Commit 3652b28

Browse files
authored
Reverting engine ignoring
1 parent 9b69464 commit 3652b28

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,10 @@ jobs:
4242
max_attempts: 3
4343
on_retry_command: yarn config set registry https://registry.npmjs.org
4444
# todo use regular "yarn install" when min Node version increased to 18.18
45-
# todo remove ignore from the first install when 22.x released
4645
# @typescript/eslint group compatibility issue fixed by ignoring engines for dev dependencies only:
4746
command: |
4847
npm pkg delete devDependencies
49-
yarn install --ignore-engines
48+
yarn install
5049
git checkout -- .
5150
yarn install --ignore-engines
5251
- name: Lint

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
"build:client": "tsx example/generate-client.ts",
2727
"build:license": "tsx tools/license.ts",
2828
"test": "yarn test:types && yarn test:unit && yarn test:badge",
29-
"test:cjs": "yarn --cwd tests/cjs --ignore-engines && vitest run -r tests/cjs",
30-
"test:esm": "yarn --cwd tests/esm --ignore-engines && vitest run -r tests/esm",
31-
"test:952": "yarn --cwd tests/issue952 --ignore-engines && yarn --cwd tests/issue952 test",
32-
"test:compat": "yarn --cwd tests/compat --ignore-engines && yarn --cwd tests/compat test",
29+
"test:cjs": "yarn --cwd tests/cjs && vitest run -r tests/cjs",
30+
"test:esm": "yarn --cwd tests/esm && vitest run -r tests/esm",
31+
"test:952": "yarn --cwd tests/issue952 && yarn --cwd tests/issue952 test",
32+
"test:compat": "yarn --cwd tests/compat && yarn --cwd tests/compat test",
3333
"test:u": "yarn test:unit -u && yarn test:badge",
3434
"test:types": "tsc --noEmit",
3535
"test:unit": "vitest run --coverage tests/unit tests/system",

0 commit comments

Comments
 (0)