Skip to content

Commit 475dc60

Browse files
committed
ci
1 parent 2008a38 commit 475dc60

File tree

3 files changed

+298
-299
lines changed

3 files changed

+298
-299
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ on:
77

88
jobs:
99
test:
10-
# For stability as of July 2025
11-
runs-on: ubuntu-22.04
12-
env:
13-
NODE_OPTIONS: "--max_old_space_size=4096 --max-old-space-size=4096"
10+
runs-on: ubuntu-latest
1411
strategy:
1512
matrix:
1613
# https://nodejs.org/en/about/previous-releases
@@ -28,11 +25,9 @@ jobs:
2825
with:
2926
node-version: ${{ matrix.node-version }}
3027
cache: 'pnpm'
31-
- name: Configure pnpm (low concurrency)
32-
run: |
33-
echo "child-concurrency=1" >> .npmrc
3428
- name: Install dependencies
3529
run: |
30+
echo "child-concurrency=1" >> .npmrc
3631
export NODE_OPTIONS="--max_old_space_size=4096"
3732
pnpm install --network-concurrency 1
3833
- name: Build all packages

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,24 +46,24 @@
4646
},
4747
"devDependencies": {
4848
"@changesets/cli": "^2.29.5",
49-
"@eslint/js": "^9.30.1",
50-
"@types/node": "^22.16.3",
51-
"@typescript-eslint/eslint-plugin": "^8.36.0",
52-
"@typescript-eslint/parser": "^8.36.0",
49+
"@eslint/js": "^9.31.0",
50+
"@types/node": "^22.16.4",
51+
"@typescript-eslint/eslint-plugin": "^8.37.0",
52+
"@typescript-eslint/parser": "^8.37.0",
5353
"@vitest/coverage-v8": "^3.2.4",
5454
"concurrently": "^9.2.0",
55-
"eslint": "^9.30.1",
55+
"eslint": "^9.31.0",
5656
"eslint-config-prettier": "^10.1.5",
5757
"eslint-plugin-unused-imports": "^4.1.4",
5858
"execa": "^9.6.0",
5959
"husky": "^9.1.7",
60-
"playwright": "^1.54.0",
60+
"playwright": "^1.54.1",
6161
"prettier": "^3.6.2",
6262
"rimraf": "^6.0.1",
6363
"tsc-multi": "^1.1.0",
6464
"tsx": "^4.20.3",
6565
"typescript": "^5.8.3",
66-
"typescript-eslint": "^8.36.0",
66+
"typescript-eslint": "^8.37.0",
6767
"verdaccio": "^6.1.5",
6868
"vitest": "^3.2.4"
6969
},

0 commit comments

Comments
 (0)