gkd-subscription/.github/workflows/check.yml

38 lines
783 B
YAML
Raw Normal View History

2023-09-04 18:11:22 +08:00
name: Check
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
2023-09-04 20:15:24 +08:00
if: ${{ !startsWith(github.event.head_commit.message, 'chore(main):') && !contains(github.event.head_commit.message, 'release') }}
2023-09-04 18:11:22 +08:00
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: volta-cli/action@v3
- uses: pnpm/action-setup@v2
- run: pnpm install
- run: pnpm run check
2023-09-14 14:40:30 +08:00
- run: |
pnpm run format
pnpm run lint
2023-09-15 11:45:58 +08:00
git status --porcelain
2023-09-14 14:40:30 +08:00
git_status=$(git status --porcelain)
if [ -n "$git_status" ]; then
2023-09-15 11:45:58 +08:00
git --no-pager diff
2023-09-14 14:40:30 +08:00
echo "提交代码风格不合规"
exit 1
fi