Skip to content

Commit

Permalink
ci: fix everything once for all (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlankParticle authored Apr 7, 2024
1 parent 509beb4 commit f4af320
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@ jobs:
- name: Install Dependencies 📦
run: pnpm install

- name: Copy Example Env 📝
run: cp apps/mailtools/.env.example apps/mailtools/.env

- name: Check 🚨
run: pnpm ci:run
12 changes: 6 additions & 6 deletions apps/mailtools/.env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TURSO_TOKEN=
TURSO_URI=
EMAIL_DOMAIN=
TURSO_TOKEN=xxxxxxxxxxxxxxxx
TURSO_URI=libsql://xxxxxxxxx.turso.io
EMAIL_DOMAIN=example.com
POSTAL_PUBLIC_KEYS='[]'
DISCORD_WEBHOOK_URL=
PUBLIC_TURNSTILE_SITE_KEY=
TURNSTILE_SECRET_KEY=
DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/xxxxxxxxxx
PUBLIC_TURNSTILE_SITE_KEY=xxxxxxxxxxxxxxxxxxxxxxx
TURNSTILE_SECRET_KEY=xxxxxxxxxxxxxxxxxxxxx
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"check": "pnpm -r run check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ci:run": "pnpm format:check && pnpm check && pnpm test"
"ci:run": "pnpm format:check && pnpm build && pnpm check && pnpm test"
},
"keywords": [
"u22n"
Expand Down

0 comments on commit f4af320

Please sign in to comment.