Split Up Dependency Installs in Release Actions
All checks were successful
Run Tests on Code / run-tests (push) Successful in 7s

This commit is contained in:
Neshura 2023-11-17 12:21:08 +00:00
parent 647343fc12
commit 34ebbb1b72

View file

@ -21,11 +21,14 @@ jobs:
container: rust:latest container: rust:latest
steps: steps:
- -
name: Installing Node, Yarn, Vite, Tauri CLI name: Installing Node, NPM
run: | run: apt update && apt install -y nodejs npm
apt update && apt install -y nodejs npm -
npm install --global yarn vite name: Installing Yarn, Vite
cargo install tauri-cli run: npm install --global yarn vite
-
name: Installing Tauri CLI
run: cargo install tauri-cli
- -
name: Checking Out Repository Code name: Checking Out Repository Code
uses: https://code.forgejo.org/actions/checkout@v3 uses: https://code.forgejo.org/actions/checkout@v3