diff options
| author | Fuwn <[email protected]> | 2026-03-22 04:45:41 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-22 04:45:41 +0000 |
| commit | e85a29c23b1dc3cdd152dcda62d0ff84e3158349 (patch) | |
| tree | 3b09f1e410190b29df66e70b8a2c3e3aeda1d7b0 /.github | |
| parent | fix: restore landing visibility without blocking lazy loads (diff) | |
| download | due.moe-e85a29c23b1dc3cdd152dcda62d0ff84e3158349.tar.xz due.moe-e85a29c23b1dc3cdd152dcda62d0ff84e3158349.zip | |
fix(ci): align pnpm setup and build env defaults
Diffstat (limited to '.github')
| -rw-r--r-- | .github/actions/setup-node-pnpm/action.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/.github/actions/setup-node-pnpm/action.yml b/.github/actions/setup-node-pnpm/action.yml index a5f5e4c7..d80af34d 100644 --- a/.github/actions/setup-node-pnpm/action.yml +++ b/.github/actions/setup-node-pnpm/action.yml @@ -9,7 +9,7 @@ inputs: pnpm_version: description: pnpm version required: false - default: "10.28.0" + default: "10.32.1" install: description: Whether to install dependencies required: false diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0bd757e..6a2b7efe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,19 @@ on: jobs: validate: runs-on: ubuntu-latest + env: + SUPABASE_URL: "http://localhost:54321" + SUPABASE_ANON_KEY: "dummy" + PUBLIC_APP_ORIGIN: "http://localhost:5173" + PUBLIC_ANILIST_CLIENT_ID: "dummy" + ANILIST_CLIENT_SECRET: "dummy" + PUBLIC_ANILIST_REDIRECT_URI: "http://localhost:5173/api/oauth/callback" + PUBLIC_ANIMESCHEDULE_CLIENT_ID: "dummy" + ANIMESCHEDULE_CLIENT_SECRET: "dummy" + PUBLIC_ANIMESCHEDULE_REDIRECT_URI: "http://localhost:5173/api/animeschedule/oauth/callback" + PUBLIC_MYANIMELIST_CLIENT_ID: "dummy" + MYANIMELIST_CLIENT_SECRET: "dummy" + PUBLIC_MYANIMLIST_REDIRECT_URI: "http://localhost:5173/api/myanimelist/oauth/callback" steps: - uses: actions/checkout@v4 |