chore(deps-dev): bump @commitlint/config-conventional from 20.4.0 to 20.4.4 #703
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: CI | |
| on: [pull_request] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run hadolint | |
| shell: bash | |
| continue-on-error: true | |
| run: | | |
| docker pull hadolint/hadolint | |
| docker run --rm -i hadolint/hadolint < Dockerfile | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Set up GitHub Actions caching for Wireit. | |
| uses: google/wireit@setup-github-actions-caching/v2 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate PR commits with commitlint | |
| if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' | |
| run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose | |
| - name: Check the types | |
| run: npm run typecheck | |
| - name: Run tests | |
| run: npm run test -- --run |