We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da965fd commit 5f25d3fCopy full SHA for 5f25d3f
1 file changed
.github/workflows/ci.yml
@@ -33,8 +33,10 @@ jobs:
33
run: npm run preprocess
34
- name: Run Lint
35
run: npm run lint:check
36
+ - name: Run Type Checker
37
+ run: npm run type
38
- type:
39
+ build:
40
runs-on: ubuntu-latest
41
steps:
42
- uses: actions/checkout@v3
@@ -52,12 +54,10 @@ jobs:
52
54
run: npm i -g npm@7
53
55
- name: Install Dependencies
56
run: npm ci
- - name: Run Preprocess
- run: npm run preprocess
57
- - name: Run Type Checker
58
- run: npm run type
+ - name: Run Build
+ run: npm run build
59
60
- build:
+ build-storybook:
61
62
63
@@ -76,7 +76,7 @@ jobs:
76
77
78
- name: Run Build
79
- run: npm run build
+ run: npm run build-storybook
80
81
test:
82
# Puppeteer stopped working on the latest ubuntu version
0 commit comments