Skip to content

Commit

Permalink
fix: github action添加安装pnpm的步骤
Browse files Browse the repository at this point in the history
  • Loading branch information
cheanus committed Nov 1, 2024
1 parent 4e0984d commit 8e7bc64
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ jobs:
- name: Checkout 🛎️
uses: actions/checkout@v4

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

- 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: |
pnpm install --frozen-lockfile --production
Expand Down

0 comments on commit 8e7bc64

Please sign in to comment.