Skip to content

Commit 2575123

Browse files
authored
fix: update Node.js version to 22.x and improve dependency installation in build workflow (#44)
1 parent ceee0ae commit 2575123

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/build-release.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,11 @@ jobs:
1919

2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: '20.x'
22+
node-version: '22.x'
2323
registry-url: 'https://registry.npmjs.org'
2424

25-
- name: Update NPM
26-
run: npm install -g npm@latest
27-
2825
- name: Install dependencies
29-
run: npm install
26+
run: npm ci
3027

3128
- name: Set git user
3229
run: |

.release-it.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
22
"$schema": "https://unpkg.com/release-it@19/schema/release-it.json",
3-
"git": {
4-
"requireCleanWorkingDir": false
5-
},
63
"npm": {
74
"publishArgs": ["--provenance", "--access", "public"],
85
"skipChecks": true

0 commit comments

Comments
 (0)