Skip to content

feat: update to oruga v0.12 #39

feat: update to oruga v0.12

feat: update to oruga v0.12 #39

Workflow file for this run

name: Lint commits
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
lint-commits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22.x
registry-url: "https://registry.npmjs.org"
cache: "npm"
- name: Install dependencies 📦
run: npm install @commitlint/cli
- name: Run commit message check 💬
run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD