mirror of
https://github.com/tiennm99/claude-code-routine-trigger-worker.git
synced 2026-05-14 02:57:54 +00:00
25 lines
487 B
YAML
25 lines
487 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
|
|
with:
|
|
version: 11
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
cache: 'pnpm'
|
|
- run: pnpm install --frozen-lockfile
|
|
- run: pnpm test
|
|
- run: pnpm exec wrangler deploy --dry-run
|
|
env:
|
|
CLOUDFLARE_API_TOKEN: dummy
|