Skip to content

Commit 8c61369

Browse files
committed
Fix: CI needs dev dependencies installed
1 parent 8b9ec41 commit 8c61369

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ jobs:
4545
- name: Run tests
4646
run: |
4747
cd server
48-
./bt install
48+
./bt install --dev
4949
./bt check

builder/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ fn run_build() -> Result<(), Box<dyn std::error::Error>> {
351351
fn run_prerelease() -> Result<(), Box<dyn std::error::Error>> {
352352
// Clean out all bundled files before the rebuild.
353353
remove_dir_all_if_exists("../client/static/bundled")?;
354-
run_install(false)?;
354+
run_install(true)?;
355355
run_script("npm", &["run", "dist"], "../client", true)?;
356356
Ok(())
357357
}

0 commit comments

Comments
 (0)