We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4601676 + ed3ddcf commit 2dfdba3Copy full SHA for 2dfdba3
.github/workflows/cov packages.yml
@@ -0,0 +1,27 @@
1
+name: lint & test
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - 'packages/**'
7
+ - '!packages/**.md'
8
9
+jobs:
10
+ cov-designer:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: checkout
14
+ uses: actions/checkout@v2
15
16
+ - uses: actions/setup-node@v2
17
+ with:
18
+ node-version: '14'
19
20
+ - name: install
21
+ run: npm i && npm run setup:skip-build
22
23
+ - uses: ArtiomTr/jest-coverage-report-action@v2
24
25
+ working-directory: packages/designer
26
+ test-script: npm test -- --jest-ci --jest-json --jest-coverage --jest-testLocationInResults --jest-outputFile=report.json
27
+ skip-step: install
0 commit comments