VP8: Don't forward higher temporal layer packets. (Upstream Pending PR) #2
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: mediasoup-node | |
on: [push, pull_request] | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
# Different Node versions on Ubuntu, the latest Node on other platforms | |
ci: | |
- os: ubuntu-22.04 | |
node: 16 | |
- os: ubuntu-22.04 | |
node: 18 | |
- os: macos-12 | |
node: 18 | |
- os: windows-2022 | |
node: 18 | |
runs-on: ${{ matrix.ci.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.ci.node }} | |
- name: Configure cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.npm | |
key: ${{ matrix.ci.os }}-node-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ matrix.ci.os }}-node- | |
- run: npm ci | |
- run: npm run lint:node | |
- run: npm run test:node |