Skip to content

Quality checks

Quality checks #3

Workflow file for this run

name: Quality checks
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:
- "**/*.md"
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
show-progress: false
- name: Setup node environment
uses: actions/[email protected]
with:
node-version: 20
check-latest: true
- name: Install dependencies
run: pnpm i
- name: Run linter ✏️
run: pnpm run lint
conventional_commits:
name: Conventional commits check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
show-progress: false
- name: Check if all commits comply with the specification
uses: webiny/[email protected]