add vimeo.work and videoji.cn to allowed vimeo domains (#1044) #10
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 | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Install packages | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
- name: Test | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: test | |
- name: Generate test coverage | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: report-coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 |