Skip to content

feat: document public structs and methods #2

feat: document public structs and methods

feat: document public structs and methods #2

Workflow file for this run

name: Lint commit message
on:
push:
branches: ["**"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Setup node 20
uses: actions/setup-node@v4
with:
node-version: "20"
check-latest: true
- name: Install commitlint
run: npm install -g @commitlint/cli @commitlint/config-conventional
- name: Lint commit message
run: echo "${{ github.event.head_commit.message }}" | commitlint --config .github/commitlint.config.js