Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
u4aew committed Dec 30, 2023
1 parent 3600dd1 commit b95d8ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: yarn workspace shared build

- name: Test Host
run: yarn workspace hosts test
run: yarn workspace host test

- name: Build Host
run: yarn workspace host build
Expand Down
3 changes: 2 additions & 1 deletion packages/cards/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"main": "index.js",
"scripts": {
"start:cards": "webpack serve --mode development",
"build": "webpack --mode production"
"build": "webpack --mode production",
"test": "jest test"
},
"devDependencies": {
"@babel/core": "^7.23.5",
Expand Down
3 changes: 2 additions & 1 deletion packages/host/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"main": "index.js",
"scripts": {
"start:host": "webpack serve --mode development",
"build": "NODE_ENV=production webpack --mode production"
"build": "NODE_ENV=production webpack --mode production",
"test": "jest test"
},
"devDependencies": {
"@babel/core": "^7.23.5",
Expand Down

0 comments on commit b95d8ef

Please sign in to comment.