Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/copilot-sdk-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ jobs:
}
EOF

# Run the client
DEBUG=copilot-client cat /tmp/test/config.json | node dist/cli.js
# Run the client (using index.js which exports main())
DEBUG=copilot-client cat /tmp/test/config.json | node -e "import('./dist/index.js').then(m => m.main())"

# Verify event log was created
if [ ! -f /tmp/test/events.jsonl ]; then
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ sync-action-scripts:

# Recompile all workflow files
.PHONY: recompile
recompile: build
recompile: build copilot-client
./$(BINARY_NAME) init --codespaces
./$(BINARY_NAME) compile --validate --verbose --purge --stats
# ./$(BINARY_NAME) compile --dir pkg/cli/workflows --validate --verbose --purge
Expand Down
Loading
Loading