2023-09-04 18:11:22 +08:00
|
|
|
name: Check
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
2023-09-20 17:31:56 +08:00
|
|
|
permissions: write-all
|
2023-09-20 17:22:35 +08:00
|
|
|
|
2023-09-04 18:11:22 +08:00
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
2023-09-20 16:57:34 +08:00
|
|
|
if: ${{ !startsWith(github.event.head_commit.message, 'chore(main):') && !contains(github.event.head_commit.message, 'release') && !contains(github.event.head_commit.message, 'check_format_lint') }}
|
2023-09-04 18:11:22 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- uses: volta-cli/action@v3
|
|
|
|
|
2023-09-20 00:12:17 +08:00
|
|
|
- run: node -v
|
|
|
|
|
2023-09-04 18:11:22 +08:00
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
|
|
|
|
- run: pnpm install
|
|
|
|
|
|
|
|
- run: pnpm run check
|
2023-09-14 14:40:30 +08:00
|
|
|
|
2023-09-18 20:29:32 +08:00
|
|
|
- run: pnpm run format
|
|
|
|
|
|
|
|
- run: pnpm run lint
|
|
|
|
|
|
|
|
- name: Git commit
|
|
|
|
id: commit
|
|
|
|
run: |
|
2023-09-20 16:57:34 +08:00
|
|
|
git status --porcelain
|
2023-09-18 20:29:32 +08:00
|
|
|
git config --local user.email github-actions[bot]@users.noreply.github.com
|
|
|
|
git config --local user.name github-actions[bot]
|
|
|
|
git config --global core.autocrlf true
|
|
|
|
git config --global core.safecrlf false
|
|
|
|
git status
|
|
|
|
git add .
|
2023-09-20 16:57:34 +08:00
|
|
|
git commit -m "chore(actions): check_format_lint" -a
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
- name: Git push
|
|
|
|
uses: ad-m/github-push-action@master
|
|
|
|
if: ${{ steps.commit.outcome == 'success' }}
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
branch: ${{ github.ref }}
|