Skip to content

🔄 synced local '.github/workflows/ci.yml' with remote 'sync/.github/w… #9

🔄 synced local '.github/workflows/ci.yml' with remote 'sync/.github/w…

🔄 synced local '.github/workflows/ci.yml' with remote 'sync/.github/w… #9

Workflow file for this run

# CI Pipeline -- Thin caller workflow

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 29, Col: 5): Unexpected value 'uses', (Line: 30, Col: 5): Unexpected value 'secrets', (Line: 25, Col: 5): Required property is missing: runs-on, (Line: 46, Col: 5): Unexpected value 'uses', (Line: 47, Col: 5): Unexpected value 'secrets', (Line: 43, Col: 5): Required property is missing: runs-on
# 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]
# Permissions needed by reusable workflows:
# - contents:read — checkout code
# - pull-requests:write — react-doctor posts PR comments
permissions:
contents: read
pull-requests: write
# 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
# Advisory only — does not block build or other jobs.
# Remove continue-on-error once repo lint errors are resolved.
continue-on-error: true
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
uses: OrrisTech/.github/.github/workflows/ci-build.yml@main
secrets: inherit
security:
name: Security Audit
# Advisory only — does not block other jobs.
continue-on-error: true
uses: OrrisTech/.github/.github/workflows/ci-security.yml@main
secrets: inherit
react-doctor:
name: React Doctor
if: github.event_name == 'pull_request'
uses: OrrisTech/.github/.github/workflows/ci-react-doctor.yml@main
secrets: inherit