Skip to content

Commit 05b024b

Browse files
author
Ruben van Leeuwen
committed
826: Use npm i instead of ci for now
1 parent 3a6d794 commit 05b024b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/lint-test-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
path: "**/node_modules"
1616
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/package.json') }}
1717
- name: Installing dependencies
18-
run: npm ci
18+
run: npm i
1919

2020
tsc-and-linting:
2121
runs-on: ubuntu-latest
@@ -32,7 +32,7 @@ jobs:
3232
path: "**/node_modules"
3333
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/package.json') }}
3434
- name: Installing dependencies
35-
run: npm ci
35+
run: npm i
3636
- run: npm run tsc
3737
- run: npm run lint
3838

@@ -51,7 +51,7 @@ jobs:
5151
path: "**/node_modules"
5252
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/package.json') }}
5353
- name: Installing dependencies
54-
run: npm ci
54+
run: npm i
5555
- run: npm run test
5656

5757
build:
@@ -69,5 +69,5 @@ jobs:
6969
path: "**/node_modules"
7070
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/package.json') }}
7171
- name: Installing dependencies
72-
run: npm ci
72+
run: npm i
7373
- run: npm run build

0 commit comments

Comments
 (0)