Skip to content

test(pg-delta): add failing regressions for issue #230 DROP ordering … #26

test(pg-delta): add failing regressions for issue #230 DROP ordering …

test(pg-delta): add failing regressions for issue #230 DROP ordering … #26

Workflow file for this run

name: Deploy TypeDoc to GitHub Pages
on:
push:
branches: [main]
paths:
- "packages/pg-delta/src/**"
- "packages/pg-delta/typedoc.json"
workflow_dispatch:
permissions:
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install
- name: Generate TypeDoc
run: cd packages/pg-delta && bun run docs
- uses: actions/upload-pages-artifact@v3
with:
path: packages/pg-delta/docs/api-reference
- id: deployment
uses: actions/deploy-pages@v4