Skip to main content

.github/workflows/ci-pr.yml

Metadata

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