Skip to content

feat: add e2e-validated label for automated acceptance proof on PRs #137

feat: add e2e-validated label for automated acceptance proof on PRs

feat: add e2e-validated label for automated acceptance proof on PRs #137

Workflow file for this run

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