Skip to content

Commit 2103588

Browse files
committed
ci: disable useBuildpacks
Signed-off-by: Grant Timmerman <timmerman+devrel@google.com>
1 parent 03c813f commit 2103588

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/conformance.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
uses: GoogleCloudPlatform/functions-framework-conformance/action@v0.3.7
2020
with:
2121
functionType: 'http'
22+
useBuildpacks: false
2223
validateMapping: false
2324
source: 'test/conformance'
2425
target: 'writeHttp'
@@ -28,6 +29,7 @@ jobs:
2829
uses: GoogleCloudPlatform/functions-framework-conformance/action@v0.3.7
2930
with:
3031
functionType: 'legacyevent'
32+
useBuildpacks: false
3133
validateMapping: false
3234
source: 'test/conformance'
3335
target: 'writeLegacyEvent'
@@ -37,7 +39,8 @@ jobs:
3739
uses: GoogleCloudPlatform/functions-framework-conformance/action@v0.3.7
3840
with:
3941
functionType: 'cloudevent'
40-
validateMapping: true
42+
useBuildpacks: false
43+
validateMapping: false
4144
source: 'test/conformance'
4245
target: 'writeCloudEvent'
4346
runtime: ${{ matrix.runtime }}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
"on-finished": "^2.3.0"
1616
},
1717
"scripts": {
18-
"test": "mocha build/test",
18+
"compile": "tsc -p .",
19+
"prepare": "npm run compile",
20+
"pretest": "npm run compile",
1921
"check": "gts check",
2022
"clean": "gts clean",
21-
"compile": "tsc -p .",
2223
"fix": "gts fix",
23-
"prepare": "npm run compile",
24-
"pretest": "npm run compile"
24+
"test": "mocha build/test"
2525
},
2626
"files": [
2727
"build/src/*.js",

0 commit comments

Comments
 (0)