Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/bench-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
name: Run Benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version: '22.x'
node-version: '24.x'
cache: pnpm

- name: Run benchmarks
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bench-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
cache: pnpm

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundle-impact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Checkout Pull Request
id: checkout
Expand All @@ -35,7 +35,7 @@ jobs:

- name: Install Node.js
if: steps.checkout.outputs.has_changes == 'true'
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
cache: pnpm

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/check-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
Expand All @@ -28,12 +28,12 @@ jobs:
name: Validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
registry-url: 'https://registry.npmjs.org'
node-version: '22.x'
node-version: '24.x'
cache: pnpm
- run: pnpm install
- name: Lint
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
env:
PR_TITLE: '${{ github.event.pull_request.title }}'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version: '22.x'
node-version: '24.x'
cache: pnpm
- run: pnpm install
- run: pnpm install @commitlint/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prerelease-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
if: ${{ contains(github.event.pull_request.labels.*.name, 'prerelease') && github.event.pull_request.state == 'open' && github.event.pull_request.draft == false && github.event.pull_request.mergeable_state == 'clean' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
registry-url: 'https://registry.npmjs.org'
node-version: '22.x'
node-version: '24.x'
cache: pnpm

- name: Merge PR into target branch
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/publish-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
Expand All @@ -28,12 +28,12 @@ jobs:
name: Validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
registry-url: 'https://registry.npmjs.org'
node-version: '22.x'
node-version: '24.x'
cache: pnpm
- run: pnpm install
- name: Lint
Expand All @@ -49,14 +49,14 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
registry-url: 'https://registry.npmjs.org'
node-version: '22.x'
node-version: '24.x'
cache: pnpm
- run: pnpm install
- run: pnpm build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
registry-url: 'https://registry.npmjs.org'
node-version: '22.x'
node-version: '24.x'
cache: pnpm

- name: Publish
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
registry-url: 'https://registry.npmjs.org'
node-version: '22.x'
node-version: '24.x'
cache: pnpm
- run: pnpm install
- run: pnpm build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
registry-url: 'https://registry.npmjs.org'
node-version: '22.x'
node-version: '24.x'
cache: pnpm
- run: pnpm install
- run: pnpm build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/register-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
cache: pnpm

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

- name: Wait for other checks to finish
if: steps.checkout.outputs.has_new_func == 'true'
uses: lewagon/wait-on-check-action@v1.3.4
uses: lewagon/wait-on-check-action@v1.4.1
with:
ref: ${{ github.event.pull_request.head.sha }}
running-workflow-name: 'register-pr'
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Install Node.js
if: steps.checkout.outputs.has_new_func == 'true'
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
cache: pnpm

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/seed-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
seed-benchmarks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version: '22.x'
node-version: '24.x'
cache: pnpm

- name: Run benchmarks and seed database
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@
"update-browserslist": "node scripts/run update-browserslist"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.1",
"@biomejs/biome": "2.3.11",
"@radashi-org/biome-config": "link:scripts/biome-config",
"@types/node": "^22.7.7",
"@vitest/coverage-v8": "2.1.5",
"cspell": "8.15.4",
"@types/node": "^25.0.0",
"@vitest/coverage-v8": "4.0.17",
"cspell": "9.6.0",
"prettier": "^3.3.2",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-pkg": "^0.21.0",
"prettier-plugin-sh": "^0.18.0",
"radashi-helper": "^0.1.11",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "2.1.9"
"vitest": "4.0.17"
},
"sideEffects": false,
"browserslist": [
Expand Down
Loading
Loading