Skip to content

refactor: move to pnpm workspace; delete Dev Container; delete k6; delete git-hooks #858

refactor: move to pnpm workspace; delete Dev Container; delete k6; delete git-hooks

refactor: move to pnpm workspace; delete Dev Container; delete k6; delete git-hooks #858

Workflow file for this run

name: Validate commit messages
on:
pull_request:
branches:
- develop
jobs:
commitlint:
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: actions/[email protected]
with:
node-version: "latest"
- name: Install commitlint
run: npm install --global @commitlint/cli @commitlint/config-conventional
- name: Run commitlint
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose