aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/actions/setup-node-pnpm/action.yml2
-rw-r--r--.github/workflows/ci.yml13
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