fix(video-quality): Bump up the default bitrates for 1080p and 4k. #2320
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: Simple CI | |
on: [pull_request] | |
jobs: | |
run-ci: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm install | |
- run: npm pack | |
- name: Check git status | |
run: git status | |
- name: Check git diff | |
run: git diff | |
- name: Check if the git repository is clean | |
run: exit $( git status --porcelain --untracked-files=no | head -255 | wc -l ) | |
- run: npm run lint | |
- run: npm run test |