test(pg-delta): add failing regressions for issue #230 DROP ordering … #26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |