Skip to content

Commit

Permalink
chore(docs): migrate to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Aug 5, 2024
1 parent 266bda1 commit c06bb58
Show file tree
Hide file tree
Showing 4 changed files with 2,004 additions and 3,078 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
pull_request:
branches: [ "main" ]
workflow_dispatch:

permissions:
contents: read
pages: write
Expand All @@ -22,18 +22,23 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4

- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: latest

- name: Install Dependencies
working-directory: docs/website
run: npm ci
run: pnpm install

- name: Build
working-directory: docs/website
run: npm run build
run: pnpm build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
Loading

0 comments on commit c06bb58

Please sign in to comment.