ci: Fix node_modules path in CI workflow configuration
This commit is contained in:
parent
59263dca71
commit
fadedb0bcd
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +89,7 @@ jobs:
|
||||||
working-directory: ./frontend
|
working-directory: ./frontend
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/node_modules
|
~/node_modules/
|
||||||
key: ${{ runner.os }}-bun-
|
key: ${{ runner.os }}-bun-
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-bun-
|
${{ runner.os }}-bun-
|
||||||
|
@ -97,6 +97,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd frontend
|
cd frontend
|
||||||
bun install
|
bun install
|
||||||
|
- run: cd frontend && ls -la
|
||||||
- name: Test build
|
- name: Test build
|
||||||
run: |
|
run: |
|
||||||
cd frontend
|
cd frontend
|
||||||
|
|
Reference in a new issue