Skip to content

Commit 94dd11a

Browse files
Merge pull request #969 from Availity/build/deploy-node-24
build: upgrade node to 24 in deploy step
2 parents 3496b75 + 9a1c313 commit 94dd11a

2 files changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set Node Version
3030
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
3131
with:
32-
node-version: 22
32+
node-version: 24
3333
cache: 'yarn'
3434
cache-dependency-path: 'yarn.lock'
3535

@@ -87,13 +87,10 @@ jobs:
8787
- name: Set Node Version
8888
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
8989
with:
90-
node-version: 22
90+
node-version: 24
9191
cache: 'yarn'
9292
cache-dependency-path: 'yarn.lock'
9393

94-
- name: Install latest npm
95-
run: npm install -g npm@latest
96-
9794
- name: Install Dependencies
9895
run: yarn install --immutable
9996

@@ -162,7 +159,7 @@ jobs:
162159
- name: Set Node Version
163160
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
164161
with:
165-
node-version: 22
162+
node-version: 24
166163
cache: 'yarn'
167164
cache-dependency-path: 'yarn.lock'
168165

.github/workflows/pr-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest]
16-
node: [20, 22]
16+
node: [22, 24]
1717

1818
steps:
1919
- name: Checkout Code
@@ -65,5 +65,5 @@ jobs:
6565
run: yarn build:packages
6666

6767
- name: Build Docs
68-
if: ${{ matrix.node == 22 }}
68+
if: ${{ matrix.node == 24 }}
6969
run: yarn build:docs

0 commit comments

Comments
 (0)