We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7130964 commit 58ab469Copy full SHA for 58ab469
.github/workflows/coverage.yml
@@ -0,0 +1,22 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - feature/*
5
+ - bugfix/*
6
+ - develop
7
+ - release/*
8
+ - hotfix/*
9
+ - main
10
+
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
+ - name: Init
18
+ run: npm ci
19
+ - name: Run Coverage
20
+ run: (npm run coverage 2>&1) | tee /tmp/coverage.out | cat /tmp/coverage.out
21
+ - name: Check coverage
22
+ run: cat /tmp/coverage.out | grep "Global test coverage"
.github/workflows/main.yml
@@ -20,6 +20,4 @@ jobs:
run: npm run test
- name: Test build
run: npm run build
23
- - name: Run Coverage
24
- run: npm run coverage
25
# See Jenkinsfile-itest for "Run integration tests" step
0 commit comments