Skip to content

Commit dc7de70

Browse files
committed
Run test for CDK examples unconditionally
This fixes #66.
1 parent 974ed7a commit dc7de70

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@ jobs:
4747
build-root-directory: kotlin/hello-world-lambda
4848

4949
# CDK projects are a hybrid of TypeScript CDK stack + platform-specific handler code; the top-level npm CDK build
50-
# is responsible for verifying the language-specific handler cod. They are also not a part of the TypeScript
50+
# is responsible for verifying the language-specific handler code. They are also not a part of the TypeScript
5151
# examples workspace, so we test them separately here.
5252
- name: Test kotlin/hello-world-lambda-cdk
53-
if: github.event.inputs.sdkTypescriptVersion != '' && github.event.inputs.sdkJavaVersion != ''
54-
run: npm --prefix kotlin/hello-world-lambda-cdk run verify
53+
run: |
54+
npm --prefix kotlin/hello-world-lambda-cdk install
55+
npm --prefix kotlin/hello-world-lambda-cdk run verify
5556
5657
build-ts:
5758
# prevent from running on forks

0 commit comments

Comments
 (0)