chore(deps-dev): bump eslint-config-next from 14.0.2 to 14.1.1 #87
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: Lint | |
on: | |
push: | |
branches: ['master'] | |
pull_request: | |
branches: ['master'] | |
jobs: | |
validate: | |
name: Validate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Validate current commit (last commit) with commitlint | |
if: github.event_name == 'push' | |
run: | | |
pnpm exec commitlint \ | |
--from ${{ github.event.before }} \ | |
--to ${{ github.event.after }} \ | |
--verbose | |
- name: Validate PR commits with commitlint | |
if: github.event_name == 'pull_request' | |
run: | | |
pnpm exec commitlint \ | |
--from ${{ github.event.pull_request.base.sha }} \ | |
--to ${{ github.event.pull_request.head.sha }} \ | |
--verbose | |
- name: Format | |
run: pnpm run format:check | |
- name: Lint | |
run: pnpm run lint:check | |
- name: Typecheck | |
run: pnpm run types:check | |
- name: Run the tests and generate coverage report | |
run: pnpm test:unit --coverage --coverageReporters=text --coverageReporters=cobertura | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |