We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b0f57 commit c0c95dcCopy full SHA for c0c95dc
.github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
24
- name: Prettier
25
run: |
26
npm run prettier
27
- docs:
+ website:
28
runs-on: ubuntu-latest
29
steps:
30
- uses: actions/checkout@v4
@@ -33,9 +33,20 @@ jobs:
33
- name: Install
34
35
npm install
36
+ - name: Build
37
+ run: |
38
+ npm run build
39
- name: Build documentation
40
41
npm run docs
42
+ - name: Build demo application
43
44
+ cd demo
45
+ npm install
46
+ npm install .. --install-links
47
48
+ cd ..
49
+ cp -R docs demo/dist
50
unit-tests:
51
runs-on: ${{ matrix.os }}
52
strategy:
0 commit comments