mirror of
https://github.com/tiennm99/telegram-mcp.git
synced 2026-06-08 16:16:45 +00:00
22 lines
428 B
YAML
22 lines
428 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '24'
|
|
cache: 'pnpm'
|
|
- run: pnpm install --frozen-lockfile
|
|
- run: pnpm exec wrangler deploy --dry-run
|
|
env:
|
|
CLOUDFLARE_API_TOKEN: dummy
|