fix(ci): validate cached ui dependencies

This commit is contained in:
Wooseong Kim
2026-04-20 14:15:00 +09:00
parent f345cf441e
commit 02747edb72
4 changed files with 31 additions and 15 deletions
+3 -9
View File
@@ -52,9 +52,7 @@ jobs:
${{ runner.os }}-bun-
- name: Ensure dependencies
run: |
[ -d node_modules ] || bun install --frozen-lockfile
[ -d ui/node_modules ] || (cd ui && bun install --frozen-lockfile)
run: bash scripts/ensure-deps.sh
- name: Run ${{ matrix.check.name }}
run: ${{ matrix.check.cmd }}
@@ -88,9 +86,7 @@ jobs:
${{ runner.os }}-bun-
- name: Ensure dependencies
run: |
[ -d node_modules ] || bun install --frozen-lockfile
[ -d ui/node_modules ] || (cd ui && bun install --frozen-lockfile)
run: bash scripts/ensure-deps.sh
- name: Build
run: bun run build:all
@@ -133,9 +129,7 @@ jobs:
${{ runner.os }}-bun-
- name: Ensure dependencies
run: |
[ -d node_modules ] || bun install --frozen-lockfile
[ -d ui/node_modules ] || (cd ui && bun install --frozen-lockfile)
run: bash scripts/ensure-deps.sh
- name: Download dist artifact
uses: actions/download-artifact@v4
+1 -3
View File
@@ -41,9 +41,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: |
bun install --frozen-lockfile
cd ui && bun install --frozen-lockfile
run: bash scripts/ensure-deps.sh
- name: Build
run: bun run build:all
+1 -3
View File
@@ -37,9 +37,7 @@ jobs:
bun-version: '1.3.9'
- name: Install dependencies
run: |
bun install --frozen-lockfile
cd ui && bun install --frozen-lockfile
run: bash scripts/ensure-deps.sh
- name: Build package
run: bun run build:all