[WIP] [v4] MULTI_THREAD
feature relying on a WebWorker
#387
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: Performance tests | |
on: | |
pull_request: | |
types: [ labeled ] | |
jobs: | |
perf-tests: | |
if: ${{ github.event.label.name == 'Performance checks' }} | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
# needed for integration & memory tests codecs support | |
- run: sudo add-apt-repository multiverse && sudo apt update && sudo apt install -y ubuntu-restricted-extras | |
- run: npm install | |
- run: export DISPLAY=:99 | |
- run: sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional | |
- run: node tests/performance/run.js |