We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb693cd commit 8578674Copy full SHA for 8578674
.github/workflows/continuous-integration-workflow.yml
@@ -42,6 +42,13 @@ jobs:
42
with:
43
run: npm run test:coverage --silent
44
45
+ # Upload coverage to codecov.io
46
+ - name: Codecov
47
+ uses: codecov/codecov-action@v1.0.12
48
+ if: runner.os == 'Linux'
49
+ with:
50
+ file: ./out/coverage/coverage-final.json
51
+
52
# Run UI tests
53
- name: Run UI Tests
54
uses: GabrielBB/xvfb-action@v1.6
@@ -50,13 +57,6 @@ jobs:
57
run: npm run public-ui-test
58
options: -screen 0 1920x1080x24
59
- # Upload coverage to codecov.io
- - name: Codecov
55
- uses: codecov/codecov-action@v1.0.12
56
- if: runner.os == 'Linux'
- with:
- file: ./out/coverage/coverage-final.json
-
60
# Archiving integration tests artifacts
61
- name: Upload test artifacts
62
uses: actions/upload-artifact@v2
0 commit comments