fix: cumulative values for packets lost and sent #11576
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: Cypress Tests for chrome | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft != true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
sdk: | |
- 'packages/hms-video-web/**/*.(ts|js)' | |
store: | |
- 'packages/hms-video-store/**/*.(ts|js)' | |
cypress: | |
- 'cypress/**/*.(ts|js)' | |
- name: Cypress | |
uses: cypress-io/github-action@v2 | |
if: steps.filter.outputs.sdk == 'true' || steps.filter.outputs.store == 'true' || steps.filter.outputs.cypress == 'true' | |
with: | |
browser: chrome | |
build: yarn build --no-private | |
headless: false | |
env: | |
CYPRESS_TOKEN_ENDPOINT: ${{ secrets.TOKEN_ENDPOINT }} | |
CYPRESS_ROOM_ID: ${{ secrets.ROOM_ID }} | |
CYPRESS_ROLE: ${{ secrets.ROLE }} | |
CYPRESS_API_ENV: ${{ secrets.API_ENV }} | |
CYPRESS_INIT_ENDPOINT: ${{ secrets.INIT_ENDPOINT }} |