mirror of
https://gitea.redwind.top/Austin/subscription
synced 2024-11-16 22:33:40 +08:00
60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
name: Check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
permissions: write-all
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
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') }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: volta-cli/action@v3
|
|
|
|
- name: download node
|
|
uses: nick-fields/retry@v2
|
|
with:
|
|
timeout_minutes: 10
|
|
max_attempts: 3
|
|
command: node -v
|
|
|
|
- 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 status --porcelain
|
|
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 .
|
|
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 }}
|