Files
Portfolio/.github/workflows/typecheck.yml
KuchtaVR6 b2d363a0fc fix: prevent duplicate workflow runs on PR branches
- Remove wildcard '**' from push trigger
- Push events now only trigger on main/master/develop branches
- PR events still trigger on all PRs to main/master/develop
- Prevents double runs when pushing to PR branches
2026-02-22 18:29:37 +00:00

72 lines
1.8 KiB
YAML

name: Code Quality Check
on:
push:
branches:
- main
- master
- develop
pull_request:
branches:
- main
- master
- develop
jobs:
quality-check:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm run lint
- name: Run TypeScript type check
run: pnpm run typecheck
- name: Comment PR on failure
if: failure() && github.event_name == 'pull_request'
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '❌ Code quality check failed. Please run `./windsurf-commands.sh lintfix` and `./windsurf-commands.sh typecheck` locally to fix issues.'
})
- name: Notify on failure
if: failure()
run: |
echo "::error::Code quality check failed. Please fix linting and type errors before merging."