Player And Plugin Tests #196
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
## CI - Player And Plugin Tests | |
name: Player And Plugin Tests | |
run-name: Player And Plugin Tests | |
on: | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
tests: | |
uses: kaltura/playkit-js-common/.github/workflows/cypress.yml@master | |
secrets: inherit | |
build: | |
uses: kaltura/ovp-pipelines-pub/.github/workflows/player_tests.yaml@master | |
with: | |
node-version: '18.x' | |
yarn-run-to-execute: 'build' | |
lint: | |
uses: kaltura/ovp-pipelines-pub/.github/workflows/player_tests.yaml@master | |
with: | |
node-version: '18.x' | |
yarn-run-to-execute: 'eslint' | |
notification: | |
if: always() | |
uses: kaltura/ovp-pipelines-pub/.github/workflows/notification.yaml@master | |
needs: tests | |
secrets: | |
PLAYER_MSTEAMS_WEBHOOK: ${{ secrets.PLAYER_MSTEAMS_WEBHOOK }} | |
with: | |
failure-status: ${{ contains(needs.*.result, 'failure') }} | |
cancelled-status: ${{ contains(needs.*.result, 'cancelled') }} | |
is-test: 'true' |