ci(app): install Rust toolchain on Ubuntu 22.04 builds
The workflow now sets up a Rust toolchain only for the Ubuntu 22.04 runner. This ensures Rust-based components can compile reliably without affecting other platforms. - Add conditional Rust toolchain install for ubuntu-22.04
This commit is contained in:
@@ -67,6 +67,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: lts/*
|
node-version: lts/*
|
||||||
|
|
||||||
|
- name: install rust toolchain
|
||||||
|
if: matrix.platform == 'ubuntu-22.04'
|
||||||
|
uses: dtolnay/rust-toolchain@stable
|
||||||
|
|
||||||
- name: install frontend dependencies
|
- name: install frontend dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user