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 80d99aa commit 7343094Copy full SHA for 7343094
.github/workflows/main.yml
@@ -53,7 +53,7 @@ jobs:
53
with:
54
path: lambdas
55
- name: List Lambdas
56
- run: ls -alh lambdas/
+ run: ls -alh lambdas/**/*
57
- name: Run macos-latest-lambda
58
run: |
59
echo "running macos-latest-lambda"
tests/integration/test.sh
@@ -32,7 +32,8 @@ for project in test-func test-func-dev; do
32
# verify packaged artifact by invoking it using the lambdaci "provided" docker image
33
unzip -o \
34
target/lambda/"${target}"/test-func.zip \
35
- -d /tmp/lambda > /dev/null 2>&1 && \
+ -d /tmp/lambda > /dev/null 2>&1
36
+ ls -al /tmp/lambda
37
${SLS_DOCKER_CLI:-docker} run \
38
-i --rm \
39
-e DOCKER_LAMBDA_USE_STDIN=1 \
0 commit comments