Skip to content

Commit a933c67

Browse files
committed
chore: update Node.js version to 22 in workflows and add IDE configuration to .gitignore
Signed-off-by: kaifcoder <kaifmohd2014@gmail.com>
1 parent 93c5aca commit a933c67

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ jobs:
2828
- name: Setup Node
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version: 20
32-
cache: 'npm'
31+
node-version: 22
3332

3433
- name: Install deps
3534
run: npm ci

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 20
17+
node-version: 22
1818
- name: Remove node_modules and package-lock.json
1919
run: rm -rf node_modules package-lock.json
2020
- name: install dependencies

.github/workflows/pr-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@v4
5454
- uses: actions/setup-node@v4
5555
with:
56-
node-version: '20'
56+
node-version: '22'
5757
cache: npm
5858
cache-dependency-path: templates/node/package.json
5959
- name: Install deps

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,5 @@ vite.config.ts.timestamp-*
145145
.smoke-test-*
146146
.tmp-smoke/**
147147
.DS_Store
148+
.vscode/*
149+
.idea/

0 commit comments

Comments
 (0)