Skip to content

Commit d661c0a

Browse files
use node 24 during the workflows
1 parent a70a924 commit d661c0a

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

.github/workflows/pr-build-lint.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v4
26+
with:
27+
node-version: '24.x'
28+
registry-url: 'https://registry.npmjs.org'
2629
- uses: actions/setup-node@v4
2730
with:
2831
node-version: '24.x'

.github/workflows/pr-generate-check.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v4
26+
with:
27+
node-version: '24.x'
28+
registry-url: 'https://registry.npmjs.org'
2629
with:
2730
fetch-depth: 0 # required for git log history
2831
- uses: actions/setup-node@v4

.github/workflows/publish_react.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
working-directory: packages/react
2929
steps:
3030
- uses: actions/checkout@v4
31+
with:
32+
node-version: '24.x'
33+
registry-url: 'https://registry.npmjs.org'
3134
# Setup .npmrc file to publish to npm
3235
- uses: actions/setup-node@v4
3336
with:

.github/workflows/publish_webcomponents.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
working-directory: packages/web-component
2929
steps:
3030
- uses: actions/checkout@v4
31+
with:
32+
node-version: '24.x'
33+
registry-url: 'https://registry.npmjs.org'
3134
# Setup .npmrc file to publish to npm
3235
- uses: actions/setup-node@v4
3336
with:

0 commit comments

Comments
 (0)