Skip to content

Commit 35a8539

Browse files
authored
Merge pull request #51 from DeskproApps/run-tests-on-pr-builds
Run tests on PR builds
2 parents 28f540c + c3b418e commit 35a8539

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/pr_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
- name: Type check
5252
run: pnpm tsc --noemit
5353

54-
# - name: Run tests
55-
# run: pnpm test:coverage
54+
- name: Run tests
55+
run: pnpm test:coverage
5656

5757
- name: Get labels from pull request
5858
id: labels

jest.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ module.exports = {
3838
],
3939
coverageThreshold: {
4040
global: {
41-
branches: 60,
42-
functions: 60,
43-
lines: 60,
41+
branches: 1,
42+
functions: 0,
43+
lines: 0,
4444
},
4545
},
4646
};

0 commit comments

Comments
 (0)