Skip to content

git-workflow benchmark: push-conflict + dirty-rebase repos (#74) #181

git-workflow benchmark: push-conflict + dirty-rebase repos (#74)

git-workflow benchmark: push-conflict + dirty-rebase repos (#74) #181

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint, typecheck, and test
run: npm run verify
- name: Run wrong-turn dataset quality gate
run: npm run eval:wrong-turn
- name: Run source-size guardrails
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
BASE_REF="${{ github.event.pull_request.base.sha }}" npm run guardrails
else
npm run guardrails
fi