File tree 1 file changed +4
-8
lines changed
1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -79,29 +79,25 @@ jobs:
79
79
strategy :
80
80
fail-fast : false
81
81
matrix :
82
- version : [12, 14]
82
+ version : [12, 14, 16 ]
83
83
steps :
84
84
- name : " Checkout"
85
85
uses : actions/checkout@v3
86
86
- name : " Use NodeJS 14"
87
87
uses : actions/setup-node@v3
88
88
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
91
91
-
name :
" Install [email protected] "
92
92
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
97
93
- name : " Configure AWS credentials"
98
94
uses :
aws-actions/[email protected]
99
95
with :
100
96
role-to-assume : ${{ secrets.AWS_ROLE_ARN_TO_ASSUME }}
101
97
aws-region : eu-west-1
102
98
- name : " Run layer integration tests"
103
99
run : |
104
- npm ci
100
+ npm ci --foreground-scripts
105
101
RUNTIME=nodejs${{ matrix.version }}.x npm run test:e2e
106
102
working-directory : layer-publisher
107
103
You can’t perform that action at this time.
0 commit comments