Time-to-first-frame metrics benchmarking and timeline chart #242
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: CI Action AWS KVS WebRTC JS SDK | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
nodejs-ubuntu-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ 16, 18, 19, 20 ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@master | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm install | |
- name: Run release | |
run: npm run release |