Skip to content

Commit 0cb6f1e

Browse files
committed
ci: fix pipelines
1 parent 1be8937 commit 0cb6f1e

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/verify-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
run: pnpm install --frozen-lockfile
103103

104104
- name: test
105-
run: pnpm test -- --watch=false --browsers=SafariNative
105+
run: pnpm test --watch=false --browsers=SafariNative
106106

107107
prettier:
108108
runs-on: ubuntu-latest

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pnpm-lock.yaml

angular.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@
115115
"main": "projects/material-css-vars/src/test.ts",
116116
"tsConfig": "projects/material-css-vars/tsconfig.spec.json",
117117
"karmaConfig": "projects/material-css-vars/karma.conf.js",
118-
"styles": ["projects/material-css-vars/src/test/global-styles.scss"]
118+
"styles": ["projects/material-css-vars/src/test/global-styles.scss"],
119+
"codeCoverage": true
119120
}
120121
},
121122
"lint": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"ng": "ng",
66
"start": "ng serve",
77
"build": "ng build",
8-
"test": "ng test --code-coverage=true",
8+
"test": "ng test",
99
"lint": "ng lint",
1010
"ubl": "npx browserslist@latest --update-db",
1111
"demo": "run-s demo.build demo.gh-pages",

0 commit comments

Comments
 (0)