Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6af577c

Browse files
authoredJun 10, 2025··
chore: use eslint-config-webpack (#170)
1 parent 4588be9 commit 6af577c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+4649
-2800
lines changed
 

‎.eslintrc.js

Lines changed: 0 additions & 70 deletions
This file was deleted.

‎.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/cache@v4
2424
with:
2525
path: .eslintcache
26-
key: lint-eslint-${{ runner.os }}-node-${{ hashFiles('**/yarn.lock', '**/.eslintrc.js') }}
26+
key: lint-eslint-${{ runner.os }}-node-${{ hashFiles('**/yarn.lock', '**/eslint.config.mjs') }}
2727
restore-keys: lint-eslint-
2828
- run: yarn lint
2929
test:
@@ -52,9 +52,9 @@ jobs:
5252
architecture: ${{ steps.calculate_architecture.outputs.result }}
5353
cache: "yarn"
5454
- run: yarn --frozen-lockfile --ignore-engines
55-
if: matrix.node-version == '10.x' || matrix.node-version == '12.x' || matrix.node-version == '14.x'
55+
if: matrix.node-version == '10.x' || matrix.node-version == '12.x' || matrix.node-version == '14.x' || matrix.node-version == '16.x' || matrix.node-version == '18.x'
5656
- run: yarn --frozen-lockfile
57-
if: matrix.node-version != '10.x' && matrix.node-version != '12.x' && matrix.node-version != '14.x'
57+
if: matrix.node-version != '10.x' && matrix.node-version != '12.x' && matrix.node-version != '14.x' && matrix.node-version != '16.x' && matrix.node-version != '18.x'
5858
- run: yarn cover
5959
- uses: codecov/codecov-action@v5
6060
with:

0 commit comments

Comments
 (0)
Please sign in to comment.