We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 976edcc + d556ee5 commit 4a61400Copy full SHA for 4a61400
.github/workflows/ci.yml
@@ -30,6 +30,15 @@ jobs:
30
- name: Run tests
31
run: npm run test
32
33
+ - name: Pack npm module
34
+ run: npm pack
35
+
36
+ - name: Upload npm build artifacts
37
+ uses: actions/upload-artifact@v6
38
+ with:
39
+ name: npm-dist
40
+ path: "*.tgz"
41
42
tcd:
43
runs-on: ubuntu-latest
44
steps:
@@ -53,6 +62,12 @@ jobs:
53
62
- name: Run TCD validation tests
54
63
run: npm run test -w tcd
55
64
65
+ - name: Upload TCD artifacts
66
67
68
+ name: tcd
69
+ path: packages/tcd/dist/
70
56
71
lint:
57
72
58
73
0 commit comments