Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix everything once for all #16

Merged
merged 1 commit into from
Apr 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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