1
0
forked from baron/baron-sso

fix(ci): use npx pnpm for dependency installation and handle missing flutter gracefully

This commit is contained in:
2026-05-28 13:14:39 +09:00
parent 92c3905558
commit 6143569f7a
2 changed files with 19 additions and 10 deletions

View File

@@ -86,8 +86,7 @@ jobs:
- name: Install adminfront dependencies
run: |
cd adminfront
npm install -g pnpm
pnpm install -C ../common --no-frozen-lockfile
npx pnpm install -C ../common --no-frozen-lockfile
- name: Biome check adminfront (lint + format)
run: |
@@ -98,8 +97,7 @@ jobs:
- name: Install devfront dependencies
run: |
cd devfront
npm install -g pnpm
pnpm install -C ../common --no-frozen-lockfile
npx pnpm install -C ../common --no-frozen-lockfile
- name: Biome check devfront (lint + format)
run: |
@@ -110,8 +108,7 @@ jobs:
- name: Install orgfront dependencies
run: |
cd orgfront
npm install -g pnpm
pnpm install -C ../common --no-frozen-lockfile
npx pnpm install -C ../common --no-frozen-lockfile
- name: Biome check orgfront (lint + format)
run: |