We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e139b5 + 053f95b commit b76274eCopy full SHA for b76274e
.github/workflows/nodejs.yml
@@ -28,6 +28,7 @@ jobs:
28
npm run server &
29
cd ../../../
30
npm run test:ci
31
+ npm run build
32
env:
33
CI: true
34
PUBLIC_KEY: ${{ secrets.ik_public_key }}
.github/workflows/npmpublish.yml
@@ -25,7 +25,12 @@ jobs:
25
npm install -g @angular/[email protected]
26
cd sdk
27
npm install
- npm run test
+ cd tests/test-apps/sample-server
+ echo PRIVATE_KEY=${{ secrets.ik_private_key }} >> .env;
+ npm install
+ npm run server &
+ cd ../../../
+ npm run test:ci
npm run build
35
36
0 commit comments