feat: move to turborepo #237
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 | |
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 run typecheck && pnpm run 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 | |
GITHUB_CLIENT_ID: client_id | |
GITHUB_CLIENT_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 |