build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.9.0 to … #198
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: upload coverage | |
on: | |
push: | |
branches: ['master'] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
upload-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prepare actions | |
uses: actions/checkout@v3 | |
- name: Setup node env | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Collect coverage | |
run: npm run test | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
timeout-minutes: 5 |