11
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2026-04-01 15:26:54 +00:00

style: ignore body-max-line-length rule for deps commits

This commit is contained in:
Wagner Santos 2021-02-12 16:25:26 -03:00
parent 26b07cb569
commit cd7f07d5ef
4 changed files with 76 additions and 8 deletions

View file

@ -10,8 +10,14 @@ jobs:
fetch-depth: 0
- run: sed -i -E "s/(docker:.+)/Dockerfile/" ./action.yml
- run: echo -n '' > .dockerignore
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm install
- uses: ./
id: run_commitlint
env:
NODE_PATH: ${{ github.workspace }}/node_modules
- name: Show results from JSON output
if: ${{ always() }}
run: echo ${{ toJSON(steps.run_commitlint.outputs.results) }}
@ -21,4 +27,10 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm install
- uses: ./
env:
NODE_PATH: ${{ github.workspace }}/node_modules