Skip to content

docs(system-design): add distributed transactions guide (#47) #66

docs(system-design): add distributed transactions guide (#47)

docs(system-design): add distributed transactions guide (#47) #66

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: deploy-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 24
- name: Install dev tools
run: npm install --no-audit --no-fund
- name: Gate — full test suite must pass
run: npm test
- name: Deploy to Cloudflare Pages
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy dist --project-name=knowledge-base --branch=main