pre-commit:
  parallel: true
  commands:
    lint:
      glob: 'src/**/*.{js,ts,tsx}'
      run: npm run lint
    build:
      run: npm run build
    prepare-files:
      run: npx lint-staged
    check-branch:
      run: npm run commit:protect
commit-msg:
  commands:
    check-commits:
      run: npx commitlint --edit
post-merge:
  install-deps-postmerge:
    tags: frontend
    run: npx install-deps-postmerge
