From 0180d3c653e46822f297069e93c73f7e03bc6edc Mon Sep 17 00:00:00 2001 From: Michael Landis Date: Fri, 16 Aug 2024 10:30:31 -0700 Subject: [PATCH] chore: add web and nodejs sdk makefiles (#1412) In order to standardize testing from the canaries, we add makefiles with the standard per-service target names. --- packages/client-sdk-nodejs/Makefile | 26 ++++++++++++++++++++++++++ packages/client-sdk-web/Makefile | 26 ++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 packages/client-sdk-nodejs/Makefile create mode 100644 packages/client-sdk-web/Makefile diff --git a/packages/client-sdk-nodejs/Makefile b/packages/client-sdk-nodejs/Makefile new file mode 100644 index 000000000..c2740d24b --- /dev/null +++ b/packages/client-sdk-nodejs/Makefile @@ -0,0 +1,26 @@ +.PHONY: test-auth-service test-cache-service test-leaderboard-service test-storage-service test-topics-service + + +test-auth-service: + @echo "Testing auth service..." + @npm run integration-test-auth + + +test-cache-service: + @echo "Testing cache service..." + @npm run integration-test-cache + + +test-leaderboard-service: + @echo "Testing leaderboard service..." + @npm run integration-test-leaderboard + + +test-storage-service: + @echo "Testing storage service..." + @npm run integration-test-storage + + +test-topics-service: + @echo "Testing topics service..." + @npm run integration-test-topics diff --git a/packages/client-sdk-web/Makefile b/packages/client-sdk-web/Makefile new file mode 100644 index 000000000..c2740d24b --- /dev/null +++ b/packages/client-sdk-web/Makefile @@ -0,0 +1,26 @@ +.PHONY: test-auth-service test-cache-service test-leaderboard-service test-storage-service test-topics-service + + +test-auth-service: + @echo "Testing auth service..." + @npm run integration-test-auth + + +test-cache-service: + @echo "Testing cache service..." + @npm run integration-test-cache + + +test-leaderboard-service: + @echo "Testing leaderboard service..." + @npm run integration-test-leaderboard + + +test-storage-service: + @echo "Testing storage service..." + @npm run integration-test-storage + + +test-topics-service: + @echo "Testing topics service..." + @npm run integration-test-topics