Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
build:
uses: kaltura/ovp-pipelines-pub/.github/workflows/player_tests.yaml@master
secrets: inherit
with:
node-version: '20.x'
yarn-run-to-execute: 'build'
Expand Down
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@kaltura:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${GIT_TOKEN}
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"serve:ott": "webpack serve --open /player-ott.html --mode development --env playerType=ott",
"build:ott": "webpack --mode production --env playerType=ott",
"watch:ott": "webpack --mode development --watch --env playerType=ott",
"build": "yarn run clean && yarn run build:ovp && yarn run build:ott && yarn run build:types",
"build": "yarn run preinstall && yarn run clean && yarn run build:ovp && yarn run build:ott && yarn run build:types",
"build:types": "tsc --build tsconfig-lib.json && mkdir -p lib && api-extractor run --local",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn run type-check -- --watch",
Expand All @@ -47,8 +47,9 @@
"clean": "rimraf dist/*",
"pushTaggedRelease": "git push --follow-tags --no-verify origin master",
"release": "standard-version",
"precommit": "yarn run build && yarn run type-check && yarn run test && yarn run lint"
},
"precommit": "yarn run build && yarn run type-check && yarn run test && yarn run lint",
"preinstall": "npx --yes --prefer-online --registry=https://npm.pkg.github.com --package @kaltura/kaltura-tools kaltura-tools check --root=."
},
"dependencies": {
"@playkit-js/playkit-js": "^0.84.33-canary.0-4132a7a",
"@playkit-js/playkit-js-dash": "1.40.0-canary.0-d30e664",
Expand Down
Loading