Skip to content

feat(#84): add tags functionality #206

feat(#84): add tags functionality

feat(#84): add tags functionality #206

Workflow file for this run

name: Test
on:
pull_request:
branches: ['**']
paths-ignore:
- 'docs/**'
- '.gitignore'
- 'LICENSE'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v6
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Prisma generate (sanity check schema)
run: pnpm run prisma:generate
env:
DATABASE_URL: file:/tmp/ci.db
- name: Lint
run: pnpm lint
- name: Format
run: pnpm fmt:check
- name: Build
run: pnpm build
- name: Test
run: pnpm test:ci