Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.

Add comprehensive EFP analytics integration #8

Add comprehensive EFP analytics integration

Add comprehensive EFP analytics integration #8

Workflow file for this run

name: Deploy to Cloudflare Workers
on:
push:
branches:
- master
- main
workflow_dispatch: # Allow manual triggering
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run type check
run: npm run type-check
- name: Deploy to Cloudflare Workers
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: deploy
- name: Deployment status
run: |
echo "🚀 Deployment completed successfully!"
echo "Worker URL: https://team-mcp.efp.workers.dev"