Skip to content

Commit

Permalink
Update to typescript-eslint v7 (#775)
Browse files Browse the repository at this point in the history
* Update to `typescript-eslint` v7

* Engines override
  • Loading branch information
tclindner committed Feb 13, 2024
1 parent 46a2bac commit 73b964a
Show file tree
Hide file tree
Showing 6 changed files with 829 additions and 817 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
with:
node-version: '16'
node-version: '18'
- run: npm ci --no-progress
- run: npm run lint

Expand All @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
node: [16, 18, 20]
node: [18, 20]
os: [ubuntu-latest, windows-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
with:
node-version: '16'
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- run: npm ci --no-progress --production
- run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
with:
node-version: '16'
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- run: npm ci --no-progress --production
- run: npm version --no-push --no-git-tag-version --yes ${{ github.event.release.tag_name }}
Expand Down
5 changes: 4 additions & 1 deletion .npmpackagejsonlintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": "npm-package-json-lint-config-tc"
"extends": "npm-package-json-lint-config-tc",
"rules": {
"valid-values-engines": "off"
}
}
Loading

0 comments on commit 73b964a

Please sign in to comment.