-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(FEC-13123): replace travis with github actions
- Loading branch information
Showing
8 changed files
with
99 additions
and
191 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
## Canary CI/CD | ||
name: Canary Full Flow | ||
run-name: Canary Full Flow | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
canary-full-flow: | ||
if: ${{ github.actor != 'PlaykitJs-Bot' }} | ||
uses: kaltura/ovp-pipelines-pub/.github/workflows/player_cicd.yaml@v1.0.0 | ||
secrets: | ||
PLAYER_CENTRAL_ACCOUNT_ID: ${{ secrets.PLAYER_CENTRAL_ACCOUNT_ID }} | ||
PLAYER_SERVICES_ACCOUNT_ID: ${{ secrets.PLAYER_SERVICES_ACCOUNT_ID }} | ||
PLAYER_S3_BUCKET_DEPLOYMENT: ${{ secrets.PLAYER_S3_BUCKET_DEPLOYMENT }} | ||
PLAYER_S3_BUCKET_APPS: ${{ secrets.PLAYER_S3_BUCKET_APPS }} | ||
PLAYER_NPM_TOKEN: ${{ secrets.PLAYER_NPM_TOKEN }} | ||
PLAYER_LAMBDA_NAME: ${{ secrets.PLAYER_LAMBDA_NAME }} | ||
PLAYER_MSTEAMS_WEBHOOK: ${{ secrets.PLAYER_MSTEAMS_WEBHOOK }} | ||
PLAYER_GITHUB_BOT_TOKEN: ${{ secrets.PLAYER_GITHUB_BOT_TOKEN }} | ||
with: | ||
type: "plugin" | ||
stage: "canary" | ||
schema-type: "playerV3Versions" | ||
tests-yarn-run-to-execute: 'eslint flow test' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## Prod CI | ||
name: Prod | ||
run-name: Prod | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
prod: | ||
uses: kaltura/ovp-pipelines-pub/.github/workflows/player_cicd.yaml@v1.0.0 | ||
secrets: | ||
PLAYER_CENTRAL_ACCOUNT_ID: ${{ secrets.PLAYER_CENTRAL_ACCOUNT_ID }} | ||
PLAYER_SERVICES_ACCOUNT_ID: ${{ secrets.PLAYER_SERVICES_ACCOUNT_ID }} | ||
PLAYER_S3_BUCKET_DEPLOYMENT: ${{ secrets.PLAYER_S3_BUCKET_DEPLOYMENT }} | ||
PLAYER_S3_BUCKET_APPS: ${{ secrets.PLAYER_S3_BUCKET_APPS }} | ||
PLAYER_NPM_TOKEN: ${{ secrets.PLAYER_NPM_TOKEN }} | ||
PLAYER_LAMBDA_NAME: ${{ secrets.PLAYER_LAMBDA_NAME }} | ||
PLAYER_MSTEAMS_WEBHOOK: ${{ secrets.PLAYER_MSTEAMS_WEBHOOK }} | ||
PLAYER_GITHUB_BOT_TOKEN: ${{ secrets.PLAYER_GITHUB_BOT_TOKEN }} | ||
with: | ||
type: "plugin" | ||
env: "prod" | ||
schema-type: "playerV3Versions" | ||
tests-yarn-run-to-execute: 'eslint flow test' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## CI - Player And Plugin Tests | ||
name: Player And Plugin Tests | ||
run-name: Player And Plugin Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- "*" | ||
|
||
jobs: | ||
running-tests: | ||
uses: kaltura/ovp-pipelines-pub/.github/workflows/player_tests.yaml@v1.0.0 | ||
with: | ||
yarn-run-to-execute: 'eslint flow test' | ||
notification: | ||
if: always() | ||
uses: kaltura/ovp-pipelines-pub/.github/workflows/notification.yaml@v1.0.0 | ||
needs: running-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' |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
# playkit-js-timeline | ||
Playkit Timeline Plugin | ||
|
||
# PlayKit JS Timeline - Kaltura Timeline Plugin for the [Kaltura Player JS] | ||
|
||
* playkit-js-timeline | ||
|
||
[![Build Status](https://github.com/kaltura/playkit-js-timeline/actions/workflows/run_canary_full_flow.yaml/badge.svg)](https://github.com/kaltura/playkit-js-timeline/actions/workflows/run_canary_full_flow.yaml) | ||
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) | ||
[![](https://img.shields.io/npm/v/@playkit-js/playkit-js-timeline/latest.svg)](https://www.npmjs.com/package/@playkit-js/playkit-js-timeline) | ||
[![](https://img.shields.io/npm/v/@playkit-js/playkit-js-timeline/canary.svg)](https://www.npmjs.com/package/@playkit-js/playkit-js-timeline/v/canary) | ||
|
||
|
||
## Timeline Manager | ||
|
||
The Timeline Manager exposes simple API's to manage custom components on the player seekbar element. | ||
|
||
By the Timeline Manager the app can add cue points to indicate specific points on the seekbar (e.g. ads). | ||
As well as to custom the thumbnail preview shown on seekbar hovering. | ||
|
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.