fix: replace setTimeout(0) by setImmediate() #228
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: rtmp-server-node-test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: 'recursive' | |
- name: Initialize submodules | |
run: git submodule update --init --recursive | |
- name: Install and build | |
run: npm i | |
- name: Install FFMPEG | |
run: sudo apt-get update && sudo apt-get install --fix-missing -y ffmpeg | |
- name: Run Test | |
run: npm test |