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
steps:
-
name: Installing Node, Yarn, Vite, Tauri CLI
run: |
apt update && apt install -y nodejs npm
npm install --global yarn vite
cargo install tauri-cli
name: Installing Node, NPM
run: apt update && apt install -y nodejs npm
-
name: Installing Yarn, Vite
run: npm install --global yarn vite
-
name: Installing Tauri CLI
run: cargo install tauri-cli
-
name: Checking Out Repository Code
uses: https://code.forgejo.org/actions/checkout@v3