Skip to content

chore(deps): bump the backend-dependencies group across 1 directory with 42 updates #910

chore(deps): bump the backend-dependencies group across 1 directory with 42 updates

chore(deps): bump the backend-dependencies group across 1 directory with 42 updates #910

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Frontend lint
working-directory: frontend
run: |
npm ci
npm run lint || echo "No frontend lint configured"
- name: Backend lint
working-directory: backend
run: |
npm ci
npm run lint || echo "No backend lint configured"
commit-messages:
name: Commit message lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Need the PR base and head commits to inspect the full range.
fetch-depth: 0
- name: Validate Conventional Commits with commitlint
uses: wagoid/commitlint-github-action@v6
with:
configFile: commitlint.config.cjs