Skip to content

feat: add SET LOGGED/UNLOGGED detection (ACCESS EXCLUSIVE, full rewrite) #43

feat: add SET LOGGED/UNLOGGED detection (ACCESS EXCLUSIVE, full rewrite)

feat: add SET LOGGED/UNLOGGED detection (ACCESS EXCLUSIVE, full rewrite) #43

Workflow file for this run

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