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
9 changes: 4 additions & 5 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
node_version:
description: The Node.js version.
required: false
default: "20"
default: "22"
registry_url:
description: The Node.js package registry URL.
required: false
Expand All @@ -23,7 +23,6 @@ runs:
uses: actions/setup-node@v4
if: inputs.install_dependencies == 'true'
with:
cache: npm
node-version: ${{ inputs.node_version }}
registry-url: ${{ inputs.registry_url }}
- name: Setup Node.js without cache
Expand All @@ -35,7 +34,7 @@ runs:
- name: Install dependencies
if: inputs.install_dependencies == 'true'
shell: bash
run: npm ci --ignore-scripts
run: npm install --ignore-scripts
- name: Rebuild Node.js modules
shell: bash
run: npm rebuild
Expand All @@ -51,6 +50,6 @@ runs:
path: |
~/.npm
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-nextjs-${{ hashFiles('**/package.json') }}-
2 changes: 1 addition & 1 deletion .github/workflows/_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
description: The Node.js version.
type: string
required: false
default: "20"
default: "22"
outputs:
artifact_name:
description: The artifact name.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/autorelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
registry-url: https://registry.npmjs.org/
- run: npm install -g pver
- run: npm ci
- run: npm install
- run: npm run build
- run: pver release
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
os:
- ubuntu-latest
node:
- "20"
- "22"
include:
- os: ubuntu-latest
os_name: Linux
Expand All @@ -40,7 +40,7 @@ jobs:
fail-fast: false
matrix:
node:
- "20"
- "22"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -65,7 +65,7 @@ jobs:
os:
- ubuntu-latest
node:
- "20"
- "22"
include:
- os: ubuntu-latest
os_name: Linux
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
fail-fast: false
matrix:
node:
- "20"
- "22"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ bundled.*
.env

**/.claude/settings.local.json
bun.lockb
bun.lock
package-lock.json
Binary file removed bun.lockb
Binary file not shown.
5 changes: 5 additions & 0 deletions bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# [test]
# preload = ["./tests/fixtures/preload.ts"]

[install.lockfile]
save = false
Loading
Loading