File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ jobs:
26
26
uses : actions/cache@v4
27
27
with :
28
28
path : ~/.npm
29
- key : ${{ runner.OS }}-node-${{ hashFiles('**/package-lock .json') }}
29
+ key : ${{ runner.OS }}-node-${{ hashFiles('**/package.json') }}
30
30
restore-keys : |
31
31
${{ runner.OS }}-node-
32
32
33
33
- name : Install Dependencies
34
- run : npm ci
34
+ run : npm i
35
35
36
36
- name : Validate Client Cache
37
37
run : npm run client:build
Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ jobs:
26
26
uses : actions/cache@v4
27
27
with :
28
28
path : ~/.npm
29
- key : ${{ runner.OS }}-node-${{ hashFiles('**/package-lock .json') }}
29
+ key : ${{ runner.OS }}-node-${{ hashFiles('**/package.json') }}
30
30
restore-keys : |
31
31
${{ runner.OS }}-node-
32
32
33
33
- name : Install Dependencies
34
- run : npm ci
34
+ run : npm i
35
35
36
36
- name : Run TS Compiler
37
37
run : npx tsc
Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ jobs:
26
26
uses : actions/cache@v4
27
27
with :
28
28
path : ~/.npm
29
- key : ${{ runner.OS }}-node-${{ hashFiles('**/package-lock .json') }}
29
+ key : ${{ runner.OS }}-node-${{ hashFiles('**/package.json') }}
30
30
restore-keys : |
31
31
${{ runner.OS }}-node-
32
32
33
33
- name : Install Dependencies
34
- run : npm ci
34
+ run : npm i
35
35
36
36
- name : Run Linter
37
37
run : npm run lint
Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ jobs:
26
26
uses : actions/cache@v4
27
27
with :
28
28
path : ~/.npm
29
- key : ${{ runner.OS }}-node-${{ hashFiles('**/package-lock .json') }}
29
+ key : ${{ runner.OS }}-node-${{ hashFiles('**/package.json') }}
30
30
restore-keys : |
31
31
${{ runner.OS }}-node-
32
32
33
33
- name : Install Dependencies
34
- run : npm ci
34
+ run : npm i
35
35
36
36
- name : Run tests
37
37
run : CI_MODE=true npm test
You can’t perform that action at this time.
0 commit comments