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 1535322 commit 245eb34Copy full SHA for 245eb34
.github/workflows/tdesign-component-repositories-ci.yml
@@ -86,6 +86,15 @@ jobs:
86
- test
87
- build
88
- preview
89
+ include:
90
+ - script: lint
91
+ run: pnpm run lint
92
+ - script: test
93
+ run: pnpm -C packages/tdesign-vue-next/test test
94
+ - script: build
95
+ run: pnpm -C internal/builds build:vue-next
96
+ - script: preview
97
+ run: pnpm -C packages/tdesign-vue-next/site build
98
steps:
99
- name: Checkout tdesign-vue-next
100
uses: actions/checkout@v4
@@ -106,11 +115,7 @@ jobs:
106
115
107
116
- run: pnpm install
108
117
109
- - if: matrix.script != 'preview'
110
- run: pnpm run ${{ matrix.script }}
111
-
112
- - if: matrix.script == 'preview'
113
- run: pnpm run site:preview
118
+ - run: ${{ matrix.run }}
114
119
120
- if: matrix.script == 'preview'
121
run: |
0 commit comments