Fix CI/CD
Some checks failed
Runs E2E API Tests / build (20.x) (push) Has been cancelled
Runs E2E API Tests / build (22.x) (push) Has been cancelled
Lint & build / lint_and_build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (22.x) (push) Has been cancelled
Mirror main branch to main-mirror-for-wdb / lint_and_build (push) Has been cancelled
Publish Docs / run (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled

This commit is contained in:
Konstantin Wohlwend 2024-11-15 21:14:51 +01:00
parent 8395ab414f
commit f45348462e
6 changed files with 11 additions and 2 deletions

View File

@ -69,6 +69,8 @@ jobs:
- name: Build
run: pnpm build
env:
QUETZAL_API_KEY: ${{ secrets.QUETZAL_API_KEY }}
- name: Start Docker Compose
run: docker compose -f dependencies.compose.yaml up -d

View File

@ -66,6 +66,8 @@ jobs:
- name: Build
run: pnpm build
env:
QUETZAL_API_KEY: ${{ secrets.QUETZAL_API_KEY }}
- name: Lint
run: pnpm lint

View File

@ -56,6 +56,8 @@ jobs:
- name: Build
run: pnpm build
env:
QUETZAL_API_KEY: ${{ secrets.QUETZAL_API_KEY }}
- name: Check API is valid
run: pnpm run fern check

View File

@ -74,6 +74,8 @@ jobs:
- name: Build
run: pnpm build
env:
QUETZAL_API_KEY: ${{ secrets.QUETZAL_API_KEY }}
- name: Check API is valid
run: pnpm run fern check

View File

@ -1 +1 @@
QUETZAL_API_KEY=# replace with your Quetzal API Key (can be found on your dashboard https://getquetzal.com/dashboard/settings/project/0)
QUETZAL_API_KEY=QTZL_19JTGKSXUSL2QCLM0FHTLN

View File

@ -32,7 +32,8 @@
"css-sc:watch": "chokidar --silent './src/generated/tailwind.css' -c 'pnpm run css-sc'",
"override-env-local-for-quetzal": "echo \"\\n$STACK_ENV_LOCAL_PACKAGE_BUILD_OVERRIDE_FOR_QUETZAL\\n\" >> .env.local",
"quetzal": "rimraf quetzal-translations && pnpm run override-env-local-for-quetzal && quetzal-process-translations && tsx ./scripts/merge-quetzal-translations.ts",
"quetzal:watch": "chokidar --silent \"src/**/*\" -i \"src/generated/quetzal-translations.ts\" -c 'pnpm run quetzal || echo Quetzal failed, probably because the API key is missing. We will just ignore it'"
"quetzal:ignore-errors": "pnpm run quetzal || echo Quetzal failed, probably because the API key is missing. We will just ignore it",
"quetzal:watch": "chokidar --silent \"src/**/*\" -i \"src/generated/quetzal-translations.ts\" -c 'pnpm run quetzal:ignore-errors'"
},
"files": [
"README.md",