feat(cli): run file-bridge poller by default on the VPS #742
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: Verify Vercel Production Link | |
| on: | |
| push: | |
| branches: | |
| - production | |
| workflow_dispatch: | |
| jobs: | |
| verify: | |
| name: Verify Vercel production branch | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node 20 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| - name: Verify linked Vercel project | |
| run: node .github/scripts/verify-vercel-production.mjs | |
| env: | |
| VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} |