Skip to content

Commit 86406e2

Browse files
committed
ci: Removed executor
1 parent ec7c030 commit 86406e2

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

Diff for: .circleci/config.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,14 @@ commands:
1313
steps:
1414
- node/install-packages:
1515
pkg-manager: yarn
16-
# cache-version: v1-all
16+
cache-version: v1-all
1717
cache-only-lockfile: true
1818
app-dir: ~/repo
1919
override-ci-command: yarn install --pure-lockfile --no-progress
20+
- run: sudo apt update -q && sudo apt install postgresql-12
2021

2122
jobs:
2223
build:
23-
docker:
24-
- image: cimg/postgres:14.6
25-
- image: cimg/node:16.18.1
2624
executor:
2725
name: node/default
2826
tag: <<pipeline.parameters.node_version>>

Diff for: src/index.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('#postgres', () => {
99

1010
const returnedUrl = await start({
1111
seedPath: `${cwd()}/src/schema.sql`,
12-
version: 14,
12+
version: 12,
1313
includeInstallation: false,
1414
});
1515

@@ -58,7 +58,7 @@ describe('#postgres', () => {
5858

5959
it('should stop postgres@14 locally', async () => {
6060
await stop({
61-
version: 14,
61+
version: 12,
6262
});
6363
try {
6464
const sql = postgres('postgres://localhost:5555/postgres');

0 commit comments

Comments
 (0)