Skip to content

Commit

Permalink
chore: add web and nodejs sdk makefiles (#1412)
Browse files Browse the repository at this point in the history
In order to standardize testing from the canaries, we add makefiles
with the standard per-service target names.
  • Loading branch information
malandis authored Aug 16, 2024
1 parent 9a5961c commit 0180d3c
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
26 changes: 26 additions & 0 deletions packages/client-sdk-nodejs/Makefile
Original file line number Diff line number Diff line change
@@ -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
26 changes: 26 additions & 0 deletions packages/client-sdk-web/Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 0180d3c

Please sign in to comment.