File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -170,12 +170,16 @@ jobs:
170
170
include :
171
171
- name : PostgreSQL 11, PostGIS 3.0
172
172
POSTGRES_IMAGE : postgis/postgis:11-3.0
173
+ NODE_VERSION : 14.17.0
173
174
- name : PostgreSQL 11, PostGIS 3.1
174
175
POSTGRES_IMAGE : postgis/postgis:11-3.1
176
+ NODE_VERSION : 14.17.0
175
177
- name : PostgreSQL 12, PostGIS 3.1
176
178
POSTGRES_IMAGE : postgis/postgis:12-3.1
179
+ NODE_VERSION : 14.17.0
177
180
- name : PostgreSQL 13, PostGIS 3.1
178
181
POSTGRES_IMAGE : postgis/postgis:13-3.1
182
+ NODE_VERSION : 14.17.0
179
183
fail-fast : false
180
184
name : ${{ matrix.name }}
181
185
timeout-minutes : 15
@@ -199,12 +203,13 @@ jobs:
199
203
env :
200
204
PARSE_SERVER_TEST_DB : postgres
201
205
PARSE_SERVER_TEST_DATABASE_URI : postgres://postgres:postgres@localhost:5432/parse_server_postgres_adapter_test_database
206
+ NODE_VERSION : ${{ matrix.NODE_VERSION }}
202
207
steps :
203
208
- uses : actions/checkout@v2
204
- - name : Use Node.js 10
209
+ - name : Use Node.js ${{ matrix.NODE_VERSION }}
205
210
uses : actions/setup-node@v1
206
211
with :
207
- node-version : 12
212
+ node-version : ${{ matrix.NODE_VERSION }}
208
213
- name : Cache Node.js modules
209
214
uses : actions/cache@v2
210
215
with :
You can’t perform that action at this time.
0 commit comments