Skip to content

Commit 821f9ff

Browse files
feat: add dts file checks (#763)
1 parent 5fc5b43 commit 821f9ff

File tree

4 files changed

+208
-147
lines changed

4 files changed

+208
-147
lines changed

.github/workflows/cicd.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ jobs:
1212
- name: Use Node.js
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: '16'
16-
cache: 'yarn'
15+
node-version: "16"
16+
cache: "yarn"
1717
- name: Install dependencies
1818
run: yarn install --prefer-offline
1919
- name: Build
2020
run: yarn build
21+
- name: Check definition files
22+
run: yarn check-definition-files
2123
- name: Lint
2224
run: yarn lint
2325
- name: Test
@@ -34,8 +36,8 @@ jobs:
3436
- name: Use Node.js
3537
uses: actions/setup-node@v3
3638
with:
37-
node-version: '16'
38-
cache: 'yarn'
39+
node-version: "16"
40+
cache: "yarn"
3941
- name: Install dependencies
4042
run: yarn install --prefer-offline
4143
- name: Build storybook
@@ -63,8 +65,8 @@ jobs:
6365
- name: Use Node.js
6466
uses: actions/setup-node@v3
6567
with:
66-
node-version: '16'
67-
cache: 'yarn'
68+
node-version: "16"
69+
cache: "yarn"
6870
- name: Install dependencies
6971
run: yarn install --prefer-offline
7072
- name: Deploy to Chromatic

0 commit comments

Comments
 (0)