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.
2 parents 1ca8ba2 + c55fdc2 commit dbd4adeCopy full SHA for dbd4ade
.github/workflows/deploy.yml
@@ -24,7 +24,6 @@ jobs:
24
shell: bash
25
run: |
26
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
27
-
28
29
- name: Set node
30
uses: actions/setup-node@v3
@@ -36,7 +35,10 @@ jobs:
36
35
run: pnpm i
37
38
- name: Lint
39
- run: pnpm run lint
+ run: pnpm lint
+
40
+ - name: Test
41
+ run: pnpm test
42
43
build:
44
needs: lint
@@ -57,7 +59,6 @@ jobs:
57
59
58
60
61
62
63
64
@@ -70,3 +71,9 @@ jobs:
70
71
72
- name: Build
73
run: pnpm docs:build
74
75
+ - name: Deploy
76
+ uses: peaceiris/actions-gh-pages@v3
77
+ with:
78
+ github_token: ${{ secrets.GITHUB_TOKEN }}
79
+ publish_dir: docs/.vitepress/dist
0 commit comments