From 89bcc6660a3bc70804b713d2fc1e0a161459f94c Mon Sep 17 00:00:00 2001 From: neonphog Date: Thu, 18 Jul 2024 14:58:53 -0600 Subject: [PATCH] npm install --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 622836d..9acb0fc 100644 --- a/Makefile +++ b/Makefile @@ -58,14 +58,18 @@ test: RUST_BACKTRACE=1 cargo test cf-test: - cd ts/sbd-server && npm ci + #npm ci is temporarrily broken + #cd ts/sbd-server && npm ci + cd ts/sbd-server && npm install cd ts/sbd-server && npm run test:unit cd ts/sbd-server && cargo run --manifest-path ../../rust/sbd-o-bahn-server-tester/Cargo.toml -- node ./server-o-bahn-runner.mjs static: cargo fmt -- --check cargo clippy -- -Dwarnings - cd ts/sbd-server && npm --verbose ci + #npm ci is temporarrily broken + #cd ts/sbd-server && npm --verbose ci + cd ts/sbd-server && npm install cd ts/sbd-server && npm run test:fmt cd ts/sbd-server && npm run test:type @if [ "${CI}x" != "x" ]; then git diff --exit-code; fi