Skip to content

Commit fb660b2

Browse files
authored
Merge branch 'main' into am-flaky-3
2 parents 1dc85bb + 3430fb9 commit fb660b2

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
13-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-node@v6
1414
with:
15-
node-version: 24
15+
node-version: 25
1616
check-latest: true
1717
- name: npm install
1818
run: npm i
@@ -34,7 +34,7 @@ jobs:
3434
run: node --run test
3535
timeout-minutes: 4
3636
- name: Upload coverage
37-
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
37+
uses: codecov/codecov-action@v5
3838
with:
3939
token: ${{ secrets.CODECOV_TOKEN }}
4040
- name: Deploy gh-pages

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-data-grid",
3-
"version": "7.0.0-beta.57",
3+
"version": "7.0.0-beta.58",
44
"license": "MIT",
55
"description": "Feature-rich and customizable data grid React component",
66
"keywords": [
@@ -58,7 +58,7 @@
5858
"@linaria/core": "^6.3.0",
5959
"@tanstack/react-router": "^1.132.31",
6060
"@tanstack/router-plugin": "^1.132.31",
61-
"@types/node": "^24.6.2",
61+
"@types/node": "^24.8.0",
6262
"@types/react": "^19.2.0",
6363
"@types/react-dom": "^19.2.0",
6464
"@typescript-eslint/eslint-plugin": "^8.39.1",

vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ export default defineConfig(({ command, isPreview }) => ({
108108
sequence: {
109109
shuffle: true
110110
},
111+
slowTestThreshold: 1000,
111112
projects: [
112113
{
113114
extends: true,

0 commit comments

Comments
 (0)