Skip to content
Closed
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
8 changes: 8 additions & 0 deletions .github/workflows/unit-tests-and-workflow-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Generate test stubs for scripts/output
run: |
mkdir -p scripts/output
echo '[{"title":"Webex Meetings","uid":"blt_meetings_stub"},{"title":"Webex Contact Center","uid":"blt_contact_center_stub"},{"title":"Webex Calling","uid":"blt_calling_stub"},{"title":"Webex Teams","uid":"blt_teams_stub"},{"title":"Webex Rooms","uid":"blt_rooms_stub"}]' \
> scripts/output/product_types.json
echo '[{"slug":"developer-tools","uid":"blt_developer_tools_stub"},{"slug":"self-service-bots","uid":"blt_self_service_bots_stub"},{"slug":"customer-support","uid":"blt_customer_support_stub"},{"slug":"analytics","uid":"blt_analytics_stub"},{"slug":"workflow-automation","uid":"blt_workflow_automation_stub"},{"slug":"ai-agent-testing-observability","uid":"blt_ai_agent_stub"},{"slug":"agent-supervisor-tools","uid":"blt_agent_supervisor_stub"},{"slug":"healthcare","uid":"blt_healthcare_stub"},{"slug":"financial-services","uid":"blt_financial_services_stub"},{"slug":"retail-ecommerce","uid":"blt_retail_stub"}]' \
> scripts/output/categories.json

- name: Run tests
run: npm test

Expand Down