Remove Antigravity summary #32
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: Check Code Rules | |
| on: | |
| push: | |
| branches: [ "main", "master" ] | |
| pull_request: | |
| branches: [ "main", "master" ] | |
| jobs: | |
| check-rules: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Install Playwright Browser | |
| run: npx playwright install --with-deps chromium | |
| - name: Run Rule Checks | |
| run: node scripts/check-rules.mjs | |
| - name: Run Formula Audit | |
| run: node scripts/audit-formulas.mjs | |
| - name: Run SEO Index Audit | |
| run: node scripts/audit-seo-index.mjs | |
| - name: Run Page Smoke Audit | |
| run: node scripts/audit-pages.mjs |