Skip to content

Commit

Permalink
ci: use pnpm in prod bundle deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsl4 committed Nov 14, 2023
1 parent 2faa4d8 commit 6b30486
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/production_bundle_gh_pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ jobs:
- name: Checkout 🛎️
uses: actions/checkout@v3

- uses: pnpm/action-setup@v2
with:
version: 8

- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm ci
npm run build
pnpm install --frozen-lockfile
pnpm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
Expand Down

0 comments on commit 6b30486

Please sign in to comment.