Skip to content

Commit

Permalink
yarn to pnpm due to caching error
Browse files Browse the repository at this point in the history
  • Loading branch information
katresars committed May 8, 2024
1 parent 33e794d commit 77bb16f
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,16 @@ jobs:
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.

- name: setup node
uses: actions/setup-node@v4
- uses: pnpm/action-setup@v2
with:
node-version: lts/*
cache: 'pnpm' # Set this to npm, yarn or pnpm.

- name: Install pnpm
run: npm install -g pnpm

version: 6.32.9
- uses: actions/setup-node@v4
with:
node-version: '14'
cache: 'pnpm'
- run: pnpm install
- run: pnpm test

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
Expand Down

0 comments on commit 77bb16f

Please sign in to comment.