Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
Signed-off-by: davimarinho <[email protected]>
  • Loading branch information
DaviMarinho committed Nov 6, 2023
1 parent 55c6c1b commit cea6d32
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ jobs:
build:
runs-on: ubuntu-latest

defaults:
run:
working-directory: ng-toolkit

steps:
- name: Checkout ✅
uses: actions/checkout@v3
Expand All @@ -23,4 +27,4 @@ jobs:
run: npm run build

- name: Test 📋
run: npm run test
run: npm run test:prod
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
"test": "ng test",
"build:prod": "ng build --prod",
"test:prod": "ng test --browsers=ChromeHeadless --watch=false --code-coverage"
},
"private": true,
"dependencies": {
Expand Down

0 comments on commit cea6d32

Please sign in to comment.