Skip to content

Merge initial dev setup to master #7

Merge initial dev setup to master

Merge initial dev setup to master #7

Workflow file for this run

name: Test
on: [pull_request]
jobs:
commitlint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Validate PR commits with commitlint
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose