Skip to content

Commit

Permalink
npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
neonphog committed Jul 18, 2024
1 parent ef515d8 commit 89bcc66
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 89bcc66

Please sign in to comment.