mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00

* fix: misalignments in dev lifecycle * fix: dist no longer added to staged * fix: misalignments in dev lifecycle * chore: multi-platform hooks and tests * chore: multi-platform hooks and tests * chore: add intention for colors * chore: update lint-staged to fix color * chore: update dist files * feat: move to lefthook (remove husky and lint-staged) * feat: move to lefthook (remove husky and lint-staged) * fix: test aftereach * fix: test aftereach * fix: early restore call * feat: jest fails if something gets logged to console * chore: add todos of misplaced code * chore: update dist files * chore: move jest file
39 lines
1007 B
YAML
39 lines
1007 B
YAML
# EXAMPLE USAGE
|
|
# Refer for explanation to following link:
|
|
# https://github.com/evilmartians/lefthook/blob/master/docs/full_guide.md
|
|
#
|
|
|
|
color: true
|
|
extends: {}
|
|
|
|
pre-push:
|
|
parallel: true
|
|
commands:
|
|
packages-audit:
|
|
tags: security
|
|
run: yarn audit
|
|
|
|
pre-commit:
|
|
parallel: true
|
|
commands:
|
|
format documents:
|
|
glob: '*.{md,mdx}'
|
|
run: yarn prettier --write {staged_files}
|
|
format configs:
|
|
glob: '*.{json,yml,yaml}'
|
|
run: yarn prettier --write {staged_files}
|
|
format code:
|
|
glob: '*.{js,jsx,ts,tsx}'
|
|
exclude: 'dist/'
|
|
run: yarn prettier --write {staged_files} && yarn eslint {staged_files} && git add {staged_files}
|
|
run tests:
|
|
glob: '*.{js,jsx,ts,tsx}'
|
|
exclude: 'dist/'
|
|
run: yarn jest --passWithNoTests --findRelatedTests {staged_files}
|
|
build distributables:
|
|
skip: ['merge', 'rebase']
|
|
run: yarn build && git add dist
|
|
make shell script executable:
|
|
glob: '*.sh'
|
|
run: git update-index --chmod=+x
|