chore(deps-dev): bump dts-bundle-generator from 8.0.1 to 9.1.0 #555
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: Lint files and run tests | |
on: push | |
jobs: | |
lint_and_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run build process | |
run: npm run build | |
- name: Lint files | |
run: npm run lint | |
- name: Run tests with coverage | |
run: npm run test:coverage | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v3 |