Skip to content

Commit b688db6

Browse files
committed
run npm ci in CI
1 parent 6b6c005 commit b688db6

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/rust.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- name: Build
2020
shell: pwsh
21-
run: ./build.ps1 -clippy
21+
run: |
22+
npm ci
23+
./build.ps1 -clippy
2224
- name: Run tests
2325
shell: pwsh
2426
run: ./build.ps1 -test
@@ -31,7 +33,9 @@ jobs:
3133
- uses: actions/checkout@v3
3234
- name: Build
3335
shell: pwsh
34-
run: ./build.ps1 -clippy
36+
run: |
37+
npm ci
38+
./build.ps1 -clippy
3539
- name: Run tests
3640
shell: pwsh
3741
run: ./build.ps1 -test
@@ -44,7 +48,9 @@ jobs:
4448
- uses: actions/checkout@v3
4549
- name: Build
4650
shell: pwsh
47-
run: ./build.ps1 -clippy
51+
run: |
52+
npm ci
53+
./build.ps1 -clippy
4854
- name: Run tests
4955
shell: pwsh
5056
run: ./build.ps1 -test

0 commit comments

Comments
 (0)