File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
serverless-plugin/scripts Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const chrome = require('./dist/bundle.cjs.js')
3
3
const cdp = require ( 'chrome-remote-interface' )
4
4
5
5
module . exports . run = async function run ( event ) {
6
- const channel = event . channel || ''
6
+ const channel = ` ${ event . channel } -` || ''
7
7
8
8
console . log ( 'started. Channel:' , channel )
9
9
Original file line number Diff line number Diff line change 23
23
docker run \
24
24
-v " $PWD /integration-test" :/var/task \
25
25
-v " $PWD /dist" :/var/task/dist \
26
- lambci/lambda:nodejs6 .10 \
26
+ lambci/lambda:nodejs8 .10 \
27
27
handler.run \
28
28
" {\" channel\" : \" $CHANNEL \" }"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ unzip -o -d "$TEST_DIRECTORY" .serverless/**.zip
25
25
26
26
CHROMIUM_VERSION=$( docker run \
27
27
-v " $PWD /$TEST_DIRECTORY " :/var/task \
28
- lambci/lambda:nodejs6 .10 \
28
+ lambci/lambda:nodejs8 .10 \
29
29
src/handler.default | \
30
30
jq -re ' .versionInfo.Browser' )
31
31
You can’t perform that action at this time.
0 commit comments