Skip to content

Commit 85a67ab

Browse files
committed
chore(logger): Fix e2e test with strategy matrix
1 parent f11140c commit 85a67ab

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: .github/workflows/run-e2e-tests.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ jobs:
2424
steps:
2525
- name: "Checkout"
2626
uses: actions/checkout@v2
27-
- name: "Setup NodeJS ${{ matrix.nodeRuntime }}"
27+
# 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"
2829
uses: actions/setup-node@v2
2930
with:
30-
node-version: ${{ matrix.nodeRuntime }}
31+
node-version: 14
3132
- name: Install packages
3233
run: |
3334
npm ci
@@ -39,7 +40,7 @@ jobs:
3940
aws-region: eu-west-1
4041
- name: Run integration tests
4142
run: |
42-
export RUNTIME=:nodejs${{ matrix.nodeRuntime }}x
43+
export RUNTIME=nodejs${{ matrix.nodeRuntime }}x
4344
echo $RUNTIME
4445
npm run lerna-test:e2e
4546
- name: Test packaging

0 commit comments

Comments
 (0)