feat: show details of submission in email #344
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Type check and lint | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
typecheck-and-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
version: 9.0.6 | |
run_install: false | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
run: pnpm install | |
- name: Type check and lint | |
run: pnpm typecheck && pnpm lint | |
env: | |
# use dummy env variables to bypass t3-env check | |
DATABASE_URL: postgresql://test:xxxx@xxxxxxxxx:3306/test | |
SMTP_HOST: host | |
SMTP_PORT: 587 | |
SMTP_USER: user | |
SMTP_PASSWORD: password | |
NEXT_PUBLIC_APP_URL: http://localhost:3000 | |
ALLOW_SIGNIN_SIGNUP: true | |
AUTH_GITHUB_ID: client_id | |
AUTH_GITHUB_SECRET: client_secret | |
STRIPE_API_KEY: stripe_api_key | |
STRIPE_WEBHOOK_SECRET: stripe_webhook_secret | |
STRIPE_PRO_MONTHLY_PLAN_ID: stripe_pro_monthly_plan_id | |
MINIO_ENDPOINT: minio_endpoint | |
MINIO_ACCESS_KEY: minio_access_key | |
MINIO_SECRET_KEY: minio_secret_key | |
MINIO_BUCKET: minio_bucket | |
MINIO_PORT: 9000 | |
MINIO_USESSL: false |