docs(sync): clarify direct Drive privacy boundary #33
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| release-gate: | |
| name: Release gate | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 35 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Build app image | |
| run: docker compose build app | |
| - name: Install dependencies | |
| run: docker compose run --rm app npm ci | |
| - name: Run release gate | |
| run: make release-gate APP_RUN_ENV="-e CI=true -e VITE_SYNC_WORKER_URL=http://127.0.0.1:8787" |