Skip to content

Commit 7d75239

Browse files
committed
feat: add Node.js setup to static workflow
- Introduced Node.js setup step in the GitHub Actions workflow to ensure the correct Node.js version (24) is used for builds. - Enabled npm caching to optimize build performance.
1 parent 00a97aa commit 7d75239

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/static.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
steps:
3232
- name: Checkout
3333
uses: actions/checkout@v4
34+
- name: Setup Node.js
35+
uses: actions/setup-node@v4
36+
with:
37+
node-version: 24
38+
cache: npm
3439
- name: Setup Pages
3540
uses: actions/configure-pages@v5
3641
- name: Build site

0 commit comments

Comments
 (0)