feat: add e2e-validated label for automated acceptance proof on PRs #137
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: Code Quality | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Run ESLint | |
| run: yarn lint | |
| - name: Run TypeScript Compiler | |
| run: tsc --noEmit | |
| - name: Install web dependencies | |
| run: yarn --cwd web install --frozen-lockfile | |
| - name: Web lint | |
| run: yarn --cwd web lint | |
| - name: Web typecheck | |
| run: yarn --cwd web typecheck |