Files
honey-fe/.gitea/workflows/check-pull-request.yaml
Hewston Fox 02d7cf2b0c
Some checks failed
Prepare pull request / prepare (pull_request) Failing after 5s
chore: try fix pipeline
2026-03-09 00:56:08 +02:00

37 lines
705 B
YAML

# Check and format a branch on a pull request created.
name: Prepare pull request
on:
pull_request:
permissions:
contents: read
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- name: Setup Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.30.3
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Format
run: pnpm run fmt
- uses: autofix-ci/action@1