Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup Node.js 18.x
- name: Setup Node.js 24.x
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 24.x
cache: 'npm'

- name: Install Dependencies
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write # For creating releases
pull-requests: write # For changesets PR
id-token: write # For npm OIDC
env:
NODE_OPTIONS: --max-old-space-size=4096
steps:
Expand All @@ -22,10 +26,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup Node.js 18.x
- name: Setup Node.js 24.x
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 24.x
cache: 'npm'

- name: Install Dependencies
Expand All @@ -47,5 +51,4 @@ jobs:
with:
publish: npm run release
env:
GITHUB_TOKEN: ${{ steps.release_token.outputs.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ steps.release_token.outputs.token }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 24
cache: 'npm'

- name: Install dependencies
Expand Down