Some checks failed
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
pre-commit:
|
|
commands:
|
|
biome_check:
|
|
glob: 'packages/**/*.{js,ts,json}'
|
|
run: pnpm biome check --write --no-errors-on-unmatched --files-ignore-unknown=true --colors=off {staged_files}
|
|
stage_fixed: true
|
|
skip:
|
|
- merge
|
|
- rebase
|
|
prettier_check:
|
|
glob: 'packages/**/*.{vue,yml,md,css,scss}'
|
|
run: pnpm prettier --write --ignore-unknown --no-error-on-unmatched-pattern {staged_files}
|
|
stage_fixed: true
|
|
skip:
|
|
- merge
|
|
- rebase
|
|
styles_check:
|
|
glob: 'packages/**/*.{scss,sass,vue}'
|
|
run: pnpm lint:styles:fix
|
|
skip:
|
|
- merge
|
|
- rebase
|
|
actionlint_check:
|
|
glob: '.github/workflows/*.{yml,yaml}'
|
|
run: actionlint {staged_files}
|
|
skip:
|
|
- merge
|
|
- rebase
|
|
workspace_deps_check:
|
|
glob: '**/package.json'
|
|
run: node scripts/check-workspace-deps.mjs {staged_files}
|
|
skip:
|
|
- merge
|
|
- rebase
|
|
playwright_janitor:
|
|
glob: 'packages/testing/playwright/**/*.ts'
|
|
run: |
|
|
files=$(echo {staged_files} | tr ' ' ',')
|
|
pnpm --filter=n8n-playwright janitor --files="$files"
|
|
skip: true # Disabled for now - enable when baseline is committed
|