main
1.PHONY: test test-watch help
2
3# Run tests
4test:
5 @echo "Running tests..."
6 @bun test github.test.ts
7
8# Run tests in watch mode
9test-watch:
10 @echo "Running tests in watch mode..."
11 @bun test --watch github.test.ts
12
13# Help
14help:
15 @echo "Available targets:"
16 @echo " test - Run tests once"
17 @echo " test-watch - Run tests in watch mode"
18 @echo " help - Show this help message"
19
20# Default target
21.DEFAULT_GOAL := help