mirror of
https://github.com/tiennm99/claude-code-routine-trigger-worker.git
synced 2026-05-14 04:58:15 +00:00
22 lines
384 B
YAML
22 lines
384 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm test
|
|
- run: npx wrangler deploy --dry-run
|
|
env:
|
|
CLOUDFLARE_API_TOKEN: dummy
|