chore(deps): bump the backend-dependencies group across 1 directory with 42 updates #910
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |