build(deps-dev): bump @commitlint/cli from 17.7.1 to 17.7.2 #439
Workflow file for this run
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: npm install | |
- name: Lint commit message | |
run: npx commitlint --from=HEAD~1 | |
- name: Run ESLint | |
run: npm run lint | |
- name: Lint TypeScript | |
run: npm run lint:dts | |
- name: Run unit tests | |
run: npm run test:coverage | |
- name: Run ES modules tests | |
run: npm run test:module | |
- name: Build bundle | |
run: npm run build | |
- name: Codecov | |
uses: codecov/codecov-action@v3 |