.github/workflows/ci-pr.yml
Metadata
- Purpose: CI/CD workflow definition for repository automation.
- Domain:
automation - Language:
yaml - Bytes: 3339
- Lines: 110
- Content hash (short):
842985ee - Source (start): .github/workflows/ci-pr.yml:1
- Source (end): .github/workflows/ci-pr.yml:110
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
name: PR Checks
on:
pull_request:
permissions:
contents: read
jobs:
pr-checks:
runs-on: ubuntu-latest
env:
STATUS_API_URL: ${{ secrets.STATUS_API_URL }}
STATUS_API_TOKEN: ${{ secrets.STATUS_API_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22