File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,14 @@ commands:
13
13
steps :
14
14
- node/install-packages :
15
15
pkg-manager : yarn
16
- # cache-version: v1-all
16
+ cache-version : v1-all
17
17
cache-only-lockfile : true
18
18
app-dir : ~/repo
19
19
override-ci-command : yarn install --pure-lockfile --no-progress
20
+ - run : sudo apt update -q && sudo apt install postgresql-12
20
21
21
22
jobs :
22
23
build :
23
- docker :
24
- - image : cimg/postgres:14.6
25
- - image : cimg/node:16.18.1
26
24
executor :
27
25
name : node/default
28
26
tag : <<pipeline.parameters.node_version>>
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ describe('#postgres', () => {
9
9
10
10
const returnedUrl = await start ( {
11
11
seedPath : `${ cwd ( ) } /src/schema.sql` ,
12
- version : 14 ,
12
+ version : 12 ,
13
13
includeInstallation : false ,
14
14
} ) ;
15
15
@@ -58,7 +58,7 @@ describe('#postgres', () => {
58
58
59
59
it ( 'should stop postgres@14 locally' , async ( ) => {
60
60
await stop ( {
61
- version : 14 ,
61
+ version : 12 ,
62
62
} ) ;
63
63
try {
64
64
const sql = postgres ( 'postgres://localhost:5555/postgres' ) ;
You can’t perform that action at this time.
0 commit comments