diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index b7eaee0..3881bdf 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -41,12 +41,15 @@ jobs: sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf # 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: install pnpm + run: npm i -g pnpm - name: install frontend dependencies - run: npm install # change this to npm, pnpm or bun depending on which one you use. + run: pnpm install # change this to npm, pnpm or bun depending on which one you use. - name: build frontend resource - run: npm run build:pass + run: pnpm build:pass + # If tagName and releaseId are omitted tauri-action will only build the app and won't try to upload any assets. - uses: tauri-apps/tauri-action@v0 env: