Linting and CI update.

This commit is contained in:
mike12345567 2024-12-10 17:30:54 +00:00
parent 322dc2e5a6
commit 340d9c34ff
2 changed files with 1 additions and 2 deletions

View File

@ -155,7 +155,7 @@ jobs:
strategy:
matrix:
datasource:
[mssql, mysql, postgres, mongodb, mariadb, oracle, sqs, none]
[mssql, mysql, postgres, postgres_legacy, mongodb, mariadb, oracle, sqs, none]
steps:
- name: Checkout repo
uses: actions/checkout@v4

View File

@ -9,7 +9,6 @@ import * as oracle from "./oracle"
import { testContainerUtils } from "@budibase/backend-core/tests"
import { Knex } from "knex"
import TestConfiguration from "../../../tests/utilities/TestConfiguration"
import { getLegacyDatasource } from "./postgres"
export type DatasourceProvider = () => Promise<Datasource | undefined>