Skip to content

Commit

Permalink
Add build command
Browse files Browse the repository at this point in the history
  • Loading branch information
John McDowell committed Jun 1, 2023
1 parent 7e95022 commit da64176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
run: yarn --cwd ./packages/web-app install -g --dev
working-directory: packages/web-app
- name: Build release
run: yarn --cwd ./packages/web-app run build
run: yarn --cwd ./packages/web-app build
- name: Sync release to iBrave
run: env LC_ALL=C rsync -a --delete packages/web-app/build/ [email protected]:public_html/${BRANCH_NAME}.diplicity.com/
1 change: 1 addition & 0 deletions packages/web-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve --mode development --open",
"start-browser-test-server": "webpack serve --mode development",
"test": "jest --config ./jest.config.js",
Expand Down

2 comments on commit da64176

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for packages/common

St.❔
Category Percentage Covered / Total
πŸ”΄ Statements 51.11% 758/1483
πŸ”΄ Branches 31.72% 144/454
πŸ”΄ Functions 28.78% 99/344
πŸ”΄ Lines 52.12% 638/1224

Test suite run success

95 tests passing in 11 suites.

Report generated by πŸ§ͺjest coverage report action from da64176

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for packages/native-app

St.❔
Category Percentage Covered / Total
🟒 Statements 100% 262/262
🟒 Branches 100% 144/144
🟒 Functions 100% 98/98
🟒 Lines 100% 260/260

Test suite run success

199 tests passing in 30 suites.

Report generated by πŸ§ͺjest coverage report action from da64176

Please sign in to comment.