From ea93449304b5ec4112bcbd151650edb5419d926f Mon Sep 17 00:00:00 2001 From: Pedro Rodrigues Date: Wed, 21 Jan 2026 15:25:02 +0000 Subject: [PATCH] Revert "add ci job" This reverts commit 5d2a4ee32988943b14544ef95d3dfff9d824987c. --- .github/workflows/ci.yaml | 43 --------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 9cf5e2f..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,43 +0,0 @@ -name: PostgreSQL Best Practices CI - -on: - push: - branches: [main] - paths: - - 'skills/postgresql-best-practices/**' - - 'packages/postgresql-best-practices-build/**' - pull_request: - paths: - - 'skills/postgresql-best-practices/**' - - 'packages/postgresql-best-practices-build/**' - -jobs: - validate-and-build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: '20' - - - name: Install dependencies - working-directory: packages/postgresql-best-practices-build - run: npm install - - - name: Validate rule files - working-directory: packages/postgresql-best-practices-build - run: npm run validate - - - name: Build AGENTS.md - working-directory: packages/postgresql-best-practices-build - run: npm run build - - - name: Check for uncommitted changes - run: | - if [[ -n $(git status --porcelain skills/postgresql-best-practices/AGENTS.md) ]]; then - echo "Error: AGENTS.md is not up to date" - echo "Run 'npm run build' and commit the changes" - git diff skills/postgresql-best-practices/AGENTS.md - exit 1 - fi