Skip to content

Commit 177b5b3

Browse files
committed
ci: add no watch to testing script
1 parent 50b380f commit 177b5b3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build-and-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
- name: Install dependencies
2121
run: npm ci
2222

23-
- name: Run tests
24-
run: npm run test:lib
25-
2623
- name: Build library
2724
run: npm run build:lib
2825

26+
- name: Run tests
27+
run: npm run test:ci
28+
2929
- name: Semantic release
3030
run: npm run semantic-release
3131
env:

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"build": "ng build --project ng-snippets-com",
1010
"build:lib": "ng build --project ng-snippets",
1111
"test:lib": "ng test --project ng-snippets",
12+
"test:ci": "ng test --project ng-snippets --no-watch --no-progress",
1213
"lint": "eslint .",
1314
"lint:fix": "eslint . --fix",
1415
"prettier:check": "prettier --check '*.{html,scss,ts,js,json}'",

0 commit comments

Comments
 (0)