Skip to content

Commit bdc6cf0

Browse files
author
A.P.A. Slaa
committed
fix: use npm install in workflows
1 parent e547352 commit bdc6cf0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 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
@@ -56,7 +56,7 @@ jobs:
5656
node-version: 24
5757
registry-url: "https://registry.npmjs.org/"
5858
- name: Install dependencies
59-
run: npm ci
59+
run: npm install
6060
- name: Create release metadata
6161
run: npx semantic-release
6262
- name: Fetch latest main and tags
@@ -98,7 +98,7 @@ jobs:
9898
registry-url: "https://registry.npmjs.org/"
9999
- name: Install dependencies
100100
if: needs.create-release.outputs.release_created == 'true'
101-
run: npm ci
101+
run: npm install
102102
- name: Build the package
103103
if: needs.create-release.outputs.release_created == 'true'
104104
run: npm run build
@@ -131,7 +131,7 @@ jobs:
131131
node-version: 24
132132
- name: Install dependencies
133133
if: needs.create-release.outputs.release_created == 'true'
134-
run: npm ci
134+
run: npm install
135135
- name: Publish to JSR
136136
if: needs.create-release.outputs.release_created == 'true'
137137
run: npx jsr publish
@@ -160,7 +160,7 @@ jobs:
160160
node-version: 24
161161
cache: npm
162162
- name: Install dependencies
163-
run: npm ci
163+
run: npm install
164164
- name: Build documentation
165165
run: npm run docs:build
166166
- name: Setup Pages

0 commit comments

Comments
 (0)