Skip to content

Commit

Permalink
fix: issue with docs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
William Bakst committed Oct 10, 2024
1 parent 28ac612 commit 2deeeed
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,27 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
cache-dependency-path: "./client/pnpm-lock.yaml"

- name: Install dependencies
working-directory: ./client
run: pnpm install

- name: Build client
working-directory: ./client
run: pnpm run build:notypescript

- name: Set up uv
run: curl -LsSf https://astral.sh/uv/0.4.6/install.sh | sh

Expand Down

0 comments on commit 2deeeed

Please sign in to comment.