Skip to content

Commit

Permalink
chore: check web client for lints and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
CBenoit committed Nov 4, 2023
1 parent 6e6a848 commit 832c70e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xtask/src/web.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,11 @@ fn build(sh: &Shell, wasm_pack_dev: bool) -> anyhow::Result<()> {
}

run_cmd_in!(sh, IRON_REMOTE_GUI_PATH, "{NPM} run check")?;
run_cmd_in!(sh, IRON_REMOTE_GUI_PATH, "{NPM} run lint")?;
run_cmd_in!(sh, IRON_REMOTE_GUI_PATH, "{NPM} run build-alone")?;

// run_cmd_in!(sh, IRON_SVELTE_CLIENT_PREFIX, "{NPM} run check").run()?; // FIXME: failing on master
run_cmd_in!(sh, IRON_SVELTE_CLIENT_PATH, "{NPM} run check")?;
run_cmd_in!(sh, IRON_SVELTE_CLIENT_PATH, "{NPM} run lint")?;
run_cmd_in!(sh, IRON_SVELTE_CLIENT_PATH, "{NPM} run build-no-wasm")?;

Ok(())
Expand Down

0 comments on commit 832c70e

Please sign in to comment.