bump youtube version and fix playlist title (#146) #170
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: Test Suites | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
- name: Install dependencies | |
run: yarn | |
- name: Run tests | |
run: yarn test --coverage | |
- name: Codecov | |
uses: codecov/codecov-action@v3.1.0 | |
env: | |
token: ${{ secrets.CODECOV_TOKEN }} |