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
9 changes: 3 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Set Node Version
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
node-version: 24
cache: 'yarn'
cache-dependency-path: 'yarn.lock'

Expand Down Expand Up @@ -87,13 +87,10 @@ jobs:
- name: Set Node Version
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
node-version: 24
cache: 'yarn'
cache-dependency-path: 'yarn.lock'

- name: Install latest npm
run: npm install -g npm@latest

- name: Install Dependencies
run: yarn install --immutable

Expand Down Expand Up @@ -162,7 +159,7 @@ jobs:
- name: Set Node Version
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
node-version: 24
cache: 'yarn'
cache-dependency-path: 'yarn.lock'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node: [20, 22]
node: [22, 24]

steps:
- name: Checkout Code
Expand Down Expand Up @@ -65,5 +65,5 @@ jobs:
run: yarn build:packages

- name: Build Docs
if: ${{ matrix.node == 22 }}
if: ${{ matrix.node == 24 }}
run: yarn build:docs
Loading