Forgot to change yarn to npm

This commit is contained in:
Z4NR34L 2023-01-09 08:51:55 +01:00
parent 5ebb3e8963
commit 555b39c966
No known key found for this signature in database
GPG key ID: 77F5F2B35C2F56C3

View file

@ -85,11 +85,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 app dependencies and build web
# Remove `&& yarn build` if you build your frontend in `beforeBuildCommand`
run: yarn && yarn build # Change this to npm, yarn or pnpm.
run: npm && npm build # Change this to npm, yarn or pnpm.
- name: Build the app
uses: tauri-apps/tauri-action@v0