Adding Media Session API Support to Nuclear (Menu Bar Issues #1647) #1981
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: Generate coverage | |
on: | |
push: | |
branches-ignore: | |
- crowdin | |
pull_request: | |
branches-ignore: | |
- crowdin | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@master | |
- name: Use Node.js 20 | |
uses: actions/setup-node@master | |
with: | |
version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Run coverage | |
run: npm run coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./packages/app/coverage/clover.xml,./packages/core/coverage/clover.xml,./packages/ui/coverage/clover.xml |