Skip to content

Commit c8e51f8

Browse files
committed
chore:remove tests on build
1 parent fe1ac52 commit c8e51f8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install dependencies
1818
run: npm ci
1919
- name: Build the project
20-
run: ng build aem-angular-editable-components --configuration production
20+
run: npn run build
2121
# - name: Run tests and do code coverage check
2222
# run: npm run test:coverage
2323
- name: Upload code coverage report to workflow as an artifact

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install dependencies
2121
run: npm ci
2222
- name: Build the project
23-
run: ng build aem-angular-editable-components --configuration production
23+
run: npm run build
2424
# - name: Run tests and do code coverage check
2525
# run: npm run test:coverage
2626
- name: Upload code coverage report to codecov.io and comment in pull request

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"node": ">=16.14.2"
2121
},
2222
"scripts": {
23-
"build": "npm run test && ng build aem-angular-editable-components --configuration production",
23+
"build": "ng build aem-angular-editable-components --configuration production",
2424
"build:dev": "npm run test && ng build aem-angular-editable-components",
2525
"clean": "rm -rf dist/",
2626
"docs": "npm i && npx typedoc --excludePrivate ./src --out ./dist/docs --exclude '**/test/**/*' --exclude '**/*.spec.ts' --exclude src/test.ts",

0 commit comments

Comments
 (0)