Skip to content

Commit

Permalink
chore: upd gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
semarche-kaltura committed Jan 29, 2024
1 parent 9995943 commit 8bead14
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/run_canary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ jobs:
with:
schema-type: "playerV3Versions"
tests-yarn-run-to-execute: 'build lint:check types:check test'
node-version: "18.x"
1 change: 1 addition & 0 deletions .github/workflows/run_prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ jobs:
type: "plugin"
env: "prod"
schema-type: "playerV3Versions"
node-version: "18.x"
tests-yarn-run-to-execute: 'build lint:check types:check test'
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
"build": "webpack --mode production",
"test": "echo 'Tests placeholder'",
"types:check": "tsc src/index.ts --jsx react --jsxFactory h --noEmit --skipLibCheck --target ESNext --moduleResolution node --experimentalDecorators --jsxFragmentFactory Fragment",
"types:genarate": "tsc src/index.ts --skipLibCheck --declaration --emitDeclarationOnly --outFile types/modules.ts --jsx react --jsxFactory h --jsxFragmentFactory Fragment --stripInternal true --target ESNext --moduleResolution node --experimentalDecorators",
"types:generate": "tsc src/index.ts --skipLibCheck --declaration --emitDeclarationOnly --outFile types/modules.ts --jsx react --jsxFactory h --jsxFragmentFactory Fragment --stripInternal true --target ESNext --moduleResolution node --experimentalDecorators",
"lint:check": "eslint . --color",
"lint:fix": "npm run lint:check -- --fix",
"prettier:fix": "prettier --write .",
"release": "standard-version",
"pushTaggedRelease": "git push --follow-tags --no-verify origin master",
"commit:dist": "git add --force --all dist && (git commit -m 'chore: update dist' || exit 0)",
"pre:commit": "npm run types:check && npm run lint && npm run types:genarate"
"pre:commit": "npm run types:check && npm run lint && npm run types:generate"
},
"devDependencies": {
"@babel/core": "^7.17.10",
Expand Down

0 comments on commit 8bead14

Please sign in to comment.