mirror of
https://gitea.redwind.top/Austin/subscription
synced 2024-11-16 17:32:22 +08:00
45 lines
935 B
YAML
45 lines
935 B
YAML
name: check_fix_push
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
|
|
permissions: write-all
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
- run: pnpm install
|
|
|
|
- run: pnpm run check
|
|
|
|
- run: pnpm run format
|
|
|
|
- run: pnpm run lint
|
|
|
|
- name: Git commit
|
|
id: commit
|
|
run: |
|
|
git config --local user.email github-actions[bot]@users.noreply.github.com
|
|
git config --local user.name github-actions[bot]
|
|
git status --porcelain
|
|
git --no-pager diff
|
|
git commit -a -m "chore(actions): check_format_lint"
|
|
continue-on-error: true
|
|
|
|
- name: Git push
|
|
uses: ad-m/github-push-action@master
|
|
if: ${{ steps.commit.outcome == 'success' }}
|
|
with:
|
|
branch: ${{ github.ref }}
|