Skip to content

🔄 synced file(s) with OrrisTech/.github #2

🔄 synced file(s) with OrrisTech/.github

🔄 synced file(s) with OrrisTech/.github #2

Workflow file for this run

# CI Pipeline -- Thin caller workflow
# Calls reusable workflows from the OrrisTech/.github org repo.
# Synced to all repos via files-to-sync.yml.
name: CI
on:
pull_request:
push:
branches: [main, master]
# Cancel in-progress runs for the same branch/PR to save runner minutes
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-typecheck:
name: Lint & Type Check
uses: OrrisTech/.github/.github/workflows/ci-lint-typecheck.yml@main
secrets: inherit
test:
name: Test
uses: OrrisTech/.github/.github/workflows/ci-test.yml@main
secrets: inherit
build:
name: Build
needs: [lint-typecheck]
uses: OrrisTech/.github/.github/workflows/ci-build.yml@main
secrets: inherit
security:
name: Security Audit
uses: OrrisTech/.github/.github/workflows/ci-security.yml@main
secrets: inherit
react-doctor:

Check failure on line 38 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 38, Col: 3): Error calling workflow 'OrrisTech/.github/.github/workflows/ci-react-doctor.yml@main'. The nested job 'react-doctor' is requesting 'pull-requests: write', but is only allowed 'pull-requests: none'.
name: React Doctor
if: github.event_name == 'pull_request'
uses: OrrisTech/.github/.github/workflows/ci-react-doctor.yml@main
secrets: inherit
claude-review:
name: Claude Code Review
if: github.event_name == 'pull_request'
uses: OrrisTech/.github/.github/workflows/ci-claude-review.yml@main
secrets: inherit