Skip to content

Commit 5b62cd0

Browse files
author
Florian Chazal
committed
add node 16 to layer e2e
1 parent 7ed7087 commit 5b62cd0

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

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

+4-8
Original file line numberDiff line numberDiff line change
@@ -79,29 +79,25 @@ jobs:
7979
strategy:
8080
fail-fast: false
8181
matrix:
82-
version: [12, 14]
82+
version: [12, 14, 16]
8383
steps:
8484
- name: "Checkout"
8585
uses: actions/checkout@v3
8686
- name: "Use NodeJS 14"
8787
uses: actions/setup-node@v3
8888
with:
89-
# Always use version 14 as we use TypeScript target es2020
90-
node-version: 14
89+
# Always use version 16 as we use TypeScript target es2020
90+
node-version: 16
9191
- name: "Install [email protected]"
9292
run: npm i -g npm@next-8
93-
- name: "Install monorepo packages"
94-
# This installs all the dependencies of ./packages/*
95-
# See https://github.com/npm/cli/issues/4475 to see why --foreground-scripts
96-
run: npm ci --foreground-scripts
9793
- name: "Configure AWS credentials"
9894
uses: aws-actions/[email protected]
9995
with:
10096
role-to-assume: ${{ secrets.AWS_ROLE_ARN_TO_ASSUME }}
10197
aws-region: eu-west-1
10298
- name: "Run layer integration tests"
10399
run: |
104-
npm ci
100+
npm ci --foreground-scripts
105101
RUNTIME=nodejs${{ matrix.version }}.x npm run test:e2e
106102
working-directory: layer-publisher
107103

0 commit comments

Comments
 (0)