Switch CI and CD scripts to use `npm ci` instead of `npm install`
This commit is contained in:
parent
bd1da01b1d
commit
75eb7c4839
|
|
@ -12,7 +12,7 @@ node --version
|
||||||
echo npm version:
|
echo npm version:
|
||||||
npm --version
|
npm --version
|
||||||
cd frontend
|
cd frontend
|
||||||
npm install
|
npm ci
|
||||||
|
|
||||||
echo 📦 Install cargo-about
|
echo 📦 Install cargo-about
|
||||||
cargo install cargo-about
|
cargo install cargo-about
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ jobs:
|
||||||
node-version: '16.x'
|
node-version: '16.x'
|
||||||
|
|
||||||
- name: 🚧 Install Node dependencies
|
- name: 🚧 Install Node dependencies
|
||||||
run: cd frontend && npm install
|
run: cd frontend && npm ci
|
||||||
|
|
||||||
- name: 🔼 Update Rust to latest stable
|
- name: 🔼 Update Rust to latest stable
|
||||||
run: rustc --version && rustup update stable && rustc --version
|
run: rustc --version && rustup update stable && rustc --version
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue