mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-23 15:42:09 -05:00
22 lines
675 B
YAML
22 lines
675 B
YAML
output:
|
|
- success
|
|
- failure
|
|
|
|
pre-commit:
|
|
commands:
|
|
biome:
|
|
run: pnpm biome check --write --error-on-warnings --no-errors-on-unmatched --files-ignore-unknown=true --colors=off {staged_files}
|
|
stage_fixed: true
|
|
spell:
|
|
run: pnpm cspell --no-progress --no-summary {staged_files}
|
|
format:
|
|
glob: "docs/**/*.{md,mdx}"
|
|
root: "docs/"
|
|
run: node_modules/.bin/remark {staged_files} --output --quiet
|
|
stage_fixed: true
|
|
lockfile:
|
|
glob: "{package.json,pnpm-lock.yaml,pnpm-workspace.yaml,packages/*/package.json}"
|
|
run: pnpm install --frozen-lockfile --ignore-scripts
|
|
dependencies:
|
|
run: pnpm lint:dependencies
|