Skip to content

Commit bc8c5fd

Browse files
author
A.P.A. Slaa
committed
fix: use npm install in release workflow
1 parent 1ceac0a commit bc8c5fd

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
node-version: 24
2727
registry-url: "https://registry.npmjs.org/"
2828
- name: Install dependencies
29-
run: npm ci
29+
run: npm install
3030
- name: Run tests
3131
run: npm test
3232
- name: Build the package
@@ -55,7 +55,9 @@ jobs:
5555
node-version: 24
5656
registry-url: "https://registry.npmjs.org/"
5757
- name: Install dependencies
58-
run: npm ci
58+
run: npm install
59+
- name: Restore tracked files
60+
run: git restore .
5961
- name: Run semantic-release
6062
run: npx semantic-release
6163

@@ -80,7 +82,7 @@ jobs:
8082
node-version: 24
8183
cache: npm
8284
- name: Install dependencies
83-
run: npm ci
85+
run: npm install
8486
- name: Build documentation
8587
run: npm run docs:build
8688
- name: Setup Pages

0 commit comments

Comments
 (0)