From 39ad747ab31f7914ec881886badb89e780367a6b Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Sat, 27 Jul 2024 23:34:52 -0500 Subject: [PATCH] fix syntax, add help --- .github/workflows/javascript.yml | 2 +- javascript/Makefile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/javascript.yml b/.github/workflows/javascript.yml index 5b0b5039..68029d56 100644 --- a/.github/workflows/javascript.yml +++ b/.github/workflows/javascript.yml @@ -67,7 +67,7 @@ jobs: bun: strategy: - fast-fail: false + fail-fast: false matrix: version: - 1.1.21 diff --git a/javascript/Makefile b/javascript/Makefile index ce2514a9..32a1bded 100644 --- a/javascript/Makefile +++ b/javascript/Makefile @@ -15,6 +15,8 @@ help: @echo " $(BLUE)test_*$(NC) run through all tests in parallel with the given number of threads. Use auto to allow the test runner to determine it. Utilizes the Mocha test runner" @echo " $(BLUE)dependencies$(NC) runs npm install" @echo " $(BLUE)lint$(NC) runs eslint" + @echo " $(BLUE)bun_test$(NC) run through all tests in sequence. Utilizes the bun runtime and test runner" + @echo " $(BLUE)bun_dependencies$(NC) installs bun and runs bun install" @echo " $(BLUE)clean$(NC) clean up any stray files" test: dependencies