Skip to content

feat: add CRUD operations for blog post plugin #557

feat: add CRUD operations for blog post plugin

feat: add CRUD operations for blog post plugin #557

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Typecheck
run: pnpm -w typecheck
- name: Lint
run: pnpm -w lint
- name: Build
run: pnpm -w build
env:
NODE_OPTIONS: --max-old-space-size=8192
- name: Knip
run: pnpm --filter @btst/stack run knip --reporter github-actions
- name: Test
run: pnpm -w test