Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
Add Package Testing to Github Actions CI workflow (#2088)
Browse files Browse the repository at this point in the history
MINOR: Add Package Tests to ci workflow in actions

Signed-off-by: Frauke Fritz <frauke.fritz@here.com>
  • Loading branch information
FraukeF committed Feb 1, 2021
1 parent b3029fe commit eb3f9f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,14 @@ jobs:
yarn karma-headless-firefox
shell: bash
if: matrix.os == 'ubuntu-latest'
- name: Test Packages
run: |
./scripts/test-npm-packages.sh
shell: bash
if: matrix.os == 'ubuntu-latest'
- name: Build bundle
run: yarn run build-bundle
shell: bash
shell: bash
- name: Build examples
run: yarn run build-examples
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion @here/harp-map-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"test": "cross-env mocha --require source-map-support/register $EXTRA_MOCHA_ARGS ./test/*.js",
"build": "tsc --build $EXTRA_TSC_ARGS",
"prepare-icons": "ts-node ./scripts/prepareIcons.ts",
"prepare": "cross-env tsc --sourceMap false $EXTRA_TSC_ARGS && ts-node ./scripts/prepack.ts"
"prepare": "cross-env tsc --sourceMap false $EXTRA_TSC_ARGS && ts-node scripts/prepack.ts"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit eb3f9f3

Please sign in to comment.