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 2de5505 commit b26d7b7Copy full SHA for b26d7b7
1 file changed
.github/workflows/build.yml
@@ -33,6 +33,9 @@ jobs:
33
- name: Test ESLint
34
run: npm run test:eslint
35
36
+ - name: Test Typescript
37
+ run: npm run test:types
38
+
39
- name: Test Markdown
40
run: npm run test:markdown
41
@@ -56,6 +59,11 @@ jobs:
56
59
name: coverage
57
60
path: coverage
58
61
62
+ - name: Build
63
+ run: |
64
+ npm run build
65
+ npm run build:example
66
67
- name: Upload package lib artifacts
68
uses: actions/upload-artifact@v3
69
if: github.event_name == 'release' &&
@@ -74,11 +82,6 @@ jobs:
74
82
name: package-types
75
83
path: types
76
84
77
- - name: Build
78
- run: |
79
- npm run build
80
- npm run build:example
81
-
85
deploy-coverage:
86
runs-on: ubuntu-latest
87
timeout-minutes: 10
0 commit comments