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 570b00d commit d4cb767Copy full SHA for d4cb767
1 file changed
.github/workflows/docs.yml
@@ -6,6 +6,7 @@ on:
6
7
jobs:
8
docs:
9
+ name: Build Documentation
10
runs-on: ubuntu-latest
11
# if: "contains(github.event.head_commit.message, 'chore(release)')"
12
steps:
@@ -20,7 +21,9 @@ jobs:
20
21
- name: Install PNPM
22
run: npm i -g pnpm
23
- name: Install dependencies
- run: cd docs && pnpm install --frozen-lockfile
24
+ run: |
25
+ pnpm install --frozen-lockfile
26
+ cd docs && pnpm install --frozen-lockfile
27
- name: Build Docs
28
run: pnpm docs:build
29
- name: Deploy on GitHub Pages
0 commit comments