ci(review): Skip Claude Code review for draft PRs #496
Workflow file for this run
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: autofix.ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version-file: .tool-versions | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run biome with auto-fix | |
| run: npm run lint-biome | |
| continue-on-error: true | |
| - name: Run oxlint with auto-fix | |
| run: npm run lint-oxlint | |
| continue-on-error: true | |
| - name: Fix website client linting | |
| working-directory: website/client | |
| run: | | |
| npm ci | |
| npm run lint | |
| continue-on-error: true | |
| - name: Fix website server linting | |
| working-directory: website/server | |
| run: | | |
| npm ci | |
| npm run lint | |
| continue-on-error: true | |
| - name: Fix browser extension linting | |
| working-directory: browser | |
| run: | | |
| npm ci | |
| npm run lint | |
| continue-on-error: true | |
| - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 # v1.3.2 |