Skip to content

Commit 6fbb422

Browse files
committed
ci: Testing if i is less problematic than ci cross-OS
1 parent 84675b3 commit 6fbb422

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/content-pack.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
uses: actions/cache@v4
2727
with:
2828
path: ~/.npm
29-
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
29+
key: ${{ runner.OS }}-node-${{ hashFiles('**/package.json') }}
3030
restore-keys: |
3131
${{ runner.OS }}-node-
3232
3333
- name: Install Dependencies
34-
run: npm ci
34+
run: npm i
3535

3636
- name: Validate Client Cache
3737
run: npm run client:build

.github/workflows/engine-compile.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
uses: actions/cache@v4
2727
with:
2828
path: ~/.npm
29-
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
29+
key: ${{ runner.OS }}-node-${{ hashFiles('**/package.json') }}
3030
restore-keys: |
3131
${{ runner.OS }}-node-
3232
3333
- name: Install Dependencies
34-
run: npm ci
34+
run: npm i
3535

3636
- name: Run TS Compiler
3737
run: npx tsc

.github/workflows/engine-lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
uses: actions/cache@v4
2727
with:
2828
path: ~/.npm
29-
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
29+
key: ${{ runner.OS }}-node-${{ hashFiles('**/package.json') }}
3030
restore-keys: |
3131
${{ runner.OS }}-node-
3232
3333
- name: Install Dependencies
34-
run: npm ci
34+
run: npm i
3535

3636
- name: Run Linter
3737
run: npm run lint

.github/workflows/engine-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
uses: actions/cache@v4
2727
with:
2828
path: ~/.npm
29-
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
29+
key: ${{ runner.OS }}-node-${{ hashFiles('**/package.json') }}
3030
restore-keys: |
3131
${{ runner.OS }}-node-
3232
3333
- name: Install Dependencies
34-
run: npm ci
34+
run: npm i
3535

3636
- name: Run tests
3737
run: CI_MODE=true npm test

0 commit comments

Comments
 (0)