We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8601b commit dcd0956Copy full SHA for dcd0956
.github/workflows/worker.yml
@@ -19,6 +19,3 @@ jobs:
19
with:
20
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
21
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
22
- preCommands: |
23
- npm install
24
- npm run build
wrangler.toml
@@ -16,6 +16,6 @@ crons = []
16
# Configure routes - removed as they're not needed for simple Workers
17
# Routes are configured in the Cloudflare dashboard
18
-# Configure build
+# Configure build - runs full build process without duplication
[build]
-command = "npm run build:webhook"
+command = "npm install && npm run build"
0 commit comments