-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathlefthook.yml
More file actions
29 lines (25 loc) · 967 Bytes
/
lefthook.yml
File metadata and controls
29 lines (25 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# lefthook.yml
# Configuration reference: https://lefthook.dev/configuration/
assert_lefthook_installed: false
output:
- meta # Print lefthook version
- summary # Print summary block (successful and failed steps)
- empty_summary # Print summary heading when there are no steps to run
- success # Print successful steps
- failure # Print failed steps printing
- execution # Print any execution logs (but prints if the execution failed)
- execution_out # Print execution output (but still prints failed commands output)
- execution_info # Print `EXECUTE > ...` logging
- skips # Print "skip" (i.e. no files matched)
pre-push:
follow: true
parallel: true
jobs:
- name: 'Code Formatting'
run: npm run lint:fix_check
stage_fixed: true
fail_text: |
💡 To catch linting issues earlier, enable the pre-commit hook:
cp lefthook-local.example.yml lefthook-local.yml
- name: 'Test'
run: npm run test