Skip to content

Commit 1fc9525

Browse files
committed
ci: fix npm install in ci
1 parent f6df2b3 commit 1fc9525

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727
node-version: ${{ matrix.node-version }}
2828

2929
- name: Install base dependencies
30-
run: npm ci --no-audit --no-save
30+
run: npm install --no-audit --no-save
3131

3232
- name: Install React dependencies
33-
run: npm ci --no-save react@${{ matrix.react }} react-dom@${{ matrix.react }}
33+
run: npm install --no-save react@${{ matrix.react }} react-dom@${{ matrix.react }}
3434

3535
- name: Install FontAwesome dependencies
36-
run: npm ci --no-save @fortawesome/fontawesome-svg-core@${{ matrix.fontawesome-svg-core }} @fortawesome/free-solid-svg-icons@${{ matrix.free-solid-svg-icons }}
36+
run: npm install --no-save @fortawesome/fontawesome-svg-core@${{ matrix.fontawesome-svg-core }} @fortawesome/free-solid-svg-icons@${{ matrix.free-solid-svg-icons }}
3737

3838
- name: Verify React version
3939
run: npm list react react-dom

0 commit comments

Comments
 (0)