Skip to content

feat: add dynamic links page to replace Linktree #364

feat: add dynamic links page to replace Linktree

feat: add dynamic links page to replace Linktree #364

Workflow file for this run

name: Code Checks
on:
pull_request:
push:
branches:
- "main"
tags-ignore:
- "v*" # Ignore version tags
jobs:
quality:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Generate Prisma Client
run: pnpm exec prisma generate
- name: Check linting
run: pnpm run check:lint --format=github
- name: Check types
run: pnpm run check:types
- name: Check formatting
run: pnpm run check:format
- name: Knip project
run: pnpm run knip
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Generate Prisma Client
run: pnpm exec prisma generate
- name: Run node tests
run: pnpm run test:node
- name: Install Playwright Chromium
run: pnpm exec playwright install --with-deps chromium
- name: Run browser tests
run: pnpm run test:browser