Skip to content

Commit ccff406

Browse files
committed
fix: replace npm ci with npm install
1 parent 4596756 commit ccff406

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cache: 'npm'
2525

2626
- name: Install dependencies
27-
run: npm ci
27+
run: npm install
2828

2929
- name: Compile TypeScript
3030
run: npm run compile
@@ -50,7 +50,7 @@ jobs:
5050
cache: 'npm'
5151

5252
- name: Install dependencies
53-
run: npm ci
53+
run: npm install
5454

5555
- name: Compile and package
5656
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
cache: 'npm'
2020

2121
- name: Install dependencies
22-
run: npm ci
22+
run: npm install
2323

2424
- name: Compile TypeScript
2525
run: npm run compile
@@ -90,7 +90,7 @@ jobs:
9090
cache: 'npm'
9191

9292
- name: Install dependencies
93-
run: npm ci
93+
run: npm install
9494

9595
- name: Compile TypeScript
9696
run: npm run compile

0 commit comments

Comments
 (0)