21 lines
363 B
YAML
21 lines
363 B
YAML
|
name: Checks
|
||
|
|
||
|
on:
|
||
|
- pull_request
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
name: commit lint
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 10
|
||
|
|
||
|
- name: Setup Pnpm and Install
|
||
|
uses: seepine/action-setup-pnpm@v1
|
||
|
|
||
|
- name: Commit lint
|
||
|
run: npx commitlint --to HEAD --verbose
|