Skip to content

docs: docker compose bake #431

docs: docker compose bake

docs: docker compose bake #431

Workflow file for this run

name: CI
on:
push: {}
pull_request: {}
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check formatting
run: pnpm run fmt:check
sync:
name: Sync
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs:
- lint
steps:
- name: Trigger sync workflow
run: gh workflow run docs-sync.yml --repo depot/app --ref main
env:
GH_TOKEN: ${{ secrets.BOT_GITHUB_SECRET }}