This repository has been archived by the owner on Apr 19, 2024. It is now read-only.
feat(得力e+):开屏广告(补充规则) (#3926) #2010
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |