We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f11140c commit 85a67abCopy full SHA for 85a67ab
.github/workflows/run-e2e-tests.yml
@@ -24,10 +24,11 @@ jobs:
24
steps:
25
- name: "Checkout"
26
uses: actions/checkout@v2
27
- - name: "Setup NodeJS ${{ matrix.nodeRuntime }}"
+ # We build and package with latest Lambda runtime stable version (14) so we will stick with it to be consistent.
28
+ - name: "Setup NodeJS 14"
29
uses: actions/setup-node@v2
30
with:
- node-version: ${{ matrix.nodeRuntime }}
31
+ node-version: 14
32
- name: Install packages
33
run: |
34
npm ci
@@ -39,7 +40,7 @@ jobs:
39
40
aws-region: eu-west-1
41
- name: Run integration tests
42
- export RUNTIME=:nodejs${{ matrix.nodeRuntime }}x
43
+ export RUNTIME=nodejs${{ matrix.nodeRuntime }}x
44
echo $RUNTIME
45
npm run lerna-test:e2e
46
- name: Test packaging
0 commit comments