fix(zapier): drop hard-coded field names from static samples (T004) #13
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
| # Repo-wide quality gate (oxlint + oxfmt). Shared across all packages — it's | |
| # only a check, never deploys, so it doesn't affect per-package release | |
| # isolation. Mirrors what the lefthook pre-commit hook runs locally, enforcing | |
| # it for contributors who don't have the hooks installed. | |
| name: lint | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - run: npm ci | |
| - name: Lint | |
| run: npm run lint | |
| - name: Format check | |
| run: npm run format:check |