Skip to content

feat: add meta fields #35

feat: add meta fields

feat: add meta fields #35

name: CI/CD Pull Request
on:
pull_request:
branches: [ main ]
types: [opened, synchronize, reopened]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: '9.12.3'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm biome check ./lib
- name: Type check
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Build Storybook
run: pnpm build-storybook