Skip to content

demo file output

demo file output #12

Workflow file for this run

name: PR Checks
on: pull_request
jobs:
pr-checks:
runs-on: ubuntu-20.04
name: Check and lint PR
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm ci
- name: Lint commits
run: npx commitlint --from=${{ github.event.pull_request.base.sha }}