element-plus/.github/workflows/lint-commit-message.yml

72 lines
1.8 KiB
YAML
Raw Normal View History

2022-09-14 09:50:55 +08:00
name: Lint Commit Message
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
outputs:
failed: ${{ steps.lint_commit.outputs.failed == 'true' }}
env:
PULL_REQUEST_NUMBER: ${{ github.event.number }}
steps:
- uses: actions/checkout@v3
2022-09-14 09:50:55 +08:00
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup node
uses: actions/setup-node@v3
with:
2022-09-14 09:50:55 +08:00
node-version: 16
2022-09-22 09:04:40 +08:00
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
2022-09-22 09:04:40 +08:00
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
2022-09-22 09:04:40 +08:00
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm i --frozen-lockfile
2022-09-14 09:50:55 +08:00
- name: Lint commit
id: lint_commit
run: pnpm lint:commit || echo "::set-output name=failed::true"
2022-09-14 09:50:55 +08:00
- name: Set success result
if: ${{ steps.lint_commit.outputs.failed != 'true' }}
run: echo 'true' > ./lint-result.txt
2022-09-14 09:50:55 +08:00
- name: Set failed result
if: ${{ steps.lint_commit.outputs.failed == 'true' }}
run: echo 'false' > ./lint-result.txt
2022-09-14 09:50:55 +08:00
- name: Set PR number
run: echo $PULL_REQUEST_NUMBER > pr.txt
2022-09-14 09:50:55 +08:00
- uses: actions/upload-artifact@v3
with:
name: commit-lint-report
path: ./commit-lint.txt
2022-09-14 09:50:55 +08:00
- uses: actions/upload-artifact@v3
with:
name: commit-lint-result
path: ./lint-result.txt
2022-09-14 09:50:55 +08:00
- uses: actions/upload-artifact@v3
with:
name: pr-number
path: ./pr.txt