(p: string)
| 393 | function changedMigrationFiles(baseRef: string): string[] { |
| 394 | const files = new Set<string>() |
| 395 | const inDir = (p: string) => p.startsWith(`${MIGRATIONS_DIR}/`) && p.endsWith('.sql') |
| 396 | |
| 397 | const mergeBase = git(['merge-base', baseRef, 'HEAD']) ?? baseRef |
| 398 | const committed = git([ |
no outgoing calls
no test coverage detected