yarn -> npm
This commit is contained in:
parent
fdfcd4571e
commit
6378a6d3b9
1 changed files with 2 additions and 2 deletions
4
.github/workflows/tauri.yml
vendored
4
.github/workflows/tauri.yml
vendored
|
@ -38,11 +38,11 @@ jobs:
|
|||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "lts/*"
|
||||
cache: "yarn" # Set this to npm, yarn or pnpm.
|
||||
cache: "npm" # Set this to npm, yarn or pnpm.
|
||||
|
||||
- name: Install frontend dependencies
|
||||
# If you don't have `beforeBuildCommand` configured you may want to build your frontend here too.
|
||||
run: yarn install # Change this to npm, yarn or pnpm.
|
||||
run: npm install # Change this to npm, yarn or pnpm.
|
||||
|
||||
- name: Build the app
|
||||
uses: tauri-apps/tauri-action@v0
|
||||
|
|
Loading…
Reference in a new issue