Skip to content

feat(writing): TD-150 new writing #136

feat(writing): TD-150 new writing

feat(writing): TD-150 new writing #136

Workflow file for this run

name: CI
on:
- pull_request
env:
NEXT_PUBLIC_SUPABASE_URL: ${{ vars.NEXT_PUBLIC_SUPABASE_URL }}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ vars.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js and Pnpm
uses: ./.github/actions/setup-node-and-pnpm
- name: Run Lint
run: pnpm lint
unit-test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js and Pnpm
uses: ./.github/actions/setup-node-and-pnpm
- name: Collect Workflow Telemetry
uses: catchpoint/workflow-telemetry-action@v2
- name: Run unit test
run: pnpm test
build-check:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js and Pnpm
uses: ./.github/actions/setup-node-and-pnpm
- name: Run Build
run: pnpm build