Skip to content

feat(quotes): move "See more supporters" link onto the attribution line #1197

feat(quotes): move "See more supporters" link onto the attribution line

feat(quotes): move "See more supporters" link onto the attribution line #1197

Workflow file for this run

name: 'Tests (Unit)'
on:
pull_request:
branches: [main, master]
types: [opened, synchronize, ready_for_review]
paths:
- '.github/workflows/tests-unit.yml'
- 'package.json'
- 'packages/app/**'
- 'packages/constants/**'
- 'packages/db/**'
- 'pnpm-lock.yaml'
- 'pnpm-workspace.yaml'
- 'tsconfig.json'
jobs:
vitest:
if: ${{ !github.event.pull_request.draft }}
timeout-minutes: 10
runs-on: blacksmith-4vcpu-ubuntu-2404
permissions:
contents: read
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '24'
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
CYPRESS_INSTALL_BINARY: '0'
- name: Typecheck
run: pnpm typecheck
- name: Unit tests
run: pnpm test:unit