From 6378a6d3b9a2bf2fe5e4c3f411bcc823965b4b8c Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Sun, 11 Jun 2023 23:13:52 -0500 Subject: [PATCH] yarn -> npm --- .github/workflows/tauri.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tauri.yml b/.github/workflows/tauri.yml index 368399b..07d6cce 100644 --- a/.github/workflows/tauri.yml +++ b/.github/workflows/tauri.yml @@ -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