chore(deps-dev): bump eslint from 9.5.0 to 9.10.0 #172
This file contains 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: PR Tests | |
on: [pull_request] | |
jobs: | |
check-commit-message: | |
name: Check Commit Message | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Commit Type | |
uses: gsactions/commit-message-checker@v1 | |
with: | |
pattern: '^(feat|fix|docs|style|refactor|test|chore|recipe)(\([A-Za-z\-]+\))?:.+' | |
error: 'Commit messages must begin with a valid commit type, with optional scope.' | |
excludeDescription: 'true' | |
excludeTitle: 'true' | |
checkAllCommitMessages: 'true' | |
accessToken: ${{ secrets.GITHUB_TOKEN }} | |
test: | |
name: Lint and Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint Markdown | |
run: npm run lint:md | |
- name: Lint CSS | |
run: npm run lint:css | |
- name: Lint JS | |
run: npm run lint:js | |
- name: Build | |
run: npm run build |