Skip to content

Commit ee94aa2

Browse files
authored
Update Node.js version and add NPM upgrade step
Updated Node.js version to 24 and added NPM upgrade step. Signed-off-by: Jeff Hampton <jhampton@gmail.com>
1 parent e027853 commit ee94aa2

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,13 @@ jobs:
2929
- name: 🟢 Setup Node
3030
uses: actions/setup-node@v4
3131
with:
32-
node-version: "22" # 22.14.0 or Higher LTS
32+
node-version: "24" # 24 or Higher LTS
3333
cache: "npm"
3434
registry-url: "https://registry.npmjs.org"
3535

36+
- name: 🔼 Upgrade NPM
37+
run: npm install -g npm@latest
38+
3639
- name: 📦 Install dependencies
3740
run: npm ci
3841

0 commit comments

Comments
 (0)