feat: add SET LOGGED/UNLOGGED detection (ACCESS EXCLUSIVE, full rewrite) #43
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Block cloud/agent files from public repo | |
| run: | | |
| LEAKED=$(git ls-files -- 'src/cloud/' 'src/agent/' 'tests/cloud/' | head -5) | |
| if [ -n "$LEAKED" ]; then | |
| echo "::error::Cloud/agent files detected in tracked files:" | |
| echo "$LEAKED" | |
| exit 1 | |
| fi | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm typecheck | |
| - run: pnpm lint | |
| - run: pnpm test | |
| - run: pnpm build |