Skip to content

Commit

Permalink
change pnpm installation method
Browse files Browse the repository at this point in the history
  • Loading branch information
newcat committed Nov 30, 2024
1 parent 45d5948 commit 0854179
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"
- name: Setup PNPM
run: |
corepack enable
corepack install
- name: Install dependencies
run: pnpm install
- name: Build WASM
Expand All @@ -41,11 +41,11 @@ jobs:
cargo install wasm-pack
wasm-pack build --target web
- name: Build
run: yarn run build
run: pnpm run build
env:
BASE_URL: "/LedMusicStudio/"
- name: Lint
run: yarn run lint
run: pnpm run lint
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
Expand Down

0 comments on commit 0854179

Please sign in to comment.