Skip to content

Commit f82876a

Browse files
Enable custom concurrent and update lock/workflows
1 parent 6ec17b5 commit f82876a

File tree

6 files changed

+9357
-13152
lines changed

6 files changed

+9357
-13152
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ module.exports = {
3939
'react/prop-types': ['off'],
4040
'react-hooks/rules-of-hooks': ['error'],
4141
'react-hooks/exhaustive-deps': ['warn'],
42+
'no-unused-vars': ['error', { ignoreRestSiblings: true }],
4243
},
4344

4445
overrides: [

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
node: [20]
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Use Node.js ${{ matrix.node }}
2323
uses: actions/setup-node@v4
2424
with:

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
publish-npm:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
with:
1515
node-version: 20

0 commit comments

Comments
 (0)