Skip to content

更新READMD文档,添加了在使用vue,并且使用了vue macros时,$变量冲突的说明 #4

更新READMD文档,添加了在使用vue,并且使用了vue macros时,$变量冲突的说明

更新READMD文档,添加了在使用vue,并且使用了vue macros时,$变量冲突的说明 #4

name: lint pull_request
on:
pull_request:
types:
- opened
- synchronize
jobs:
lint-commits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: volta-cli/action@v3
- uses: pnpm/action-setup@v2
- run: pnpm install
- run: pnpm exec commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
- run: pnpm lint
- run: pnpm build