build(deps): bump style-to-object from 0.4.1 to 0.4.2 #639
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@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: npm install | |
- name: Lint commit message | |
run: npx commitlint --from=HEAD~1 | |
- name: Lint codebase | |
run: npm run lint | |
- name: Run tests with coverage | |
run: npm test -- --ci | |
- name: Build package | |
run: npm run build | |
- name: Codecov | |
uses: codecov/codecov-action@v3 |