Skip to content

Commit

Permalink
Allow cloudflare environment variables in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Stamm <ts@timostamm.de>
  • Loading branch information
timostamm committed Sep 5, 2024
1 parent 8eee2fa commit df3ce69
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions packages/connect-cloudflare/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@
"$schema": "https://turbo.build/schema.json",
"extends": ["//"],
"tasks": {
"conformance:client": { "cache": false, "dependsOn": ["^build"] },
"conformance:server": { "cache": false, "dependsOn": ["^build"] }
"conformance:client": {
"cache": false,
"dependsOn": ["^build"],
"env": ["CLOUDFLARE_*"]
},
"conformance:server": {
"cache": false,
"dependsOn": ["^build"],
"env": ["CLOUDFLARE_*"]
}
}
}

0 comments on commit df3ce69

Please sign in to comment.