Skip to content

Commit a1196fe

Browse files
committed
ci: run the CI workflow for the feat/postgres integration branch
The build/test workflow only triggered for pushes and pull requests on main, so once the PostgreSQL PRs retargeted the feat/postgres integration branch, the full suite (including the postgres integration lane) stopped running for them entirely; only the unfiltered workflows (lint, e2e) still did. Adds feat/postgres to both filters so merges to the branch and PRs based on it get the full pipeline again.
1 parent a309bbf commit a1196fe

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: CI
55

66
on:
77
push:
8-
branches: [main]
8+
branches: [main, feat/postgres]
99
pull_request:
10-
branches: [main]
10+
branches: [main, feat/postgres]
1111

1212
permissions:
1313
pull-requests: write

test/db/postgres/schemaMigrations.integration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe.runIf(shouldRunPostgresTests)('PostgreSQL Schema Migration Integration
3939
const versions = await query<{ version: number }>(
4040
'SELECT version FROM schema_migrations ORDER BY version',
4141
);
42-
expect(versions.rows.map((row) => row.version)).toEqual([1, 2]);
42+
expect(versions.rows.map((row) => row.version)).toEqual([1, 2, 3]);
4343

4444
const tables = await query<{ tablename: string }>(
4545
`SELECT tablename FROM pg_tables
@@ -71,6 +71,6 @@ describe.runIf(shouldRunPostgresTests)('PostgreSQL Schema Migration Integration
7171
await connect();
7272

7373
const versions = await query<{ version: number }>('SELECT version FROM schema_migrations');
74-
expect(versions.rows.map((row) => row.version)).toEqual([1, 2]);
74+
expect(versions.rows.map((row) => row.version)).toEqual([1, 2, 3]);
7575
});
7676
});

0 commit comments

Comments
 (0)