chore(ci): update Tinybird CI workflow (#11033)

Added a new job to check for changed files before executing the CI
workflow. Integrated Tinybird local service, updated environment
variables, and refined the CI steps for better functionality and
clarity.
This commit is contained in:
Antoine Moreaux
2025-03-21 16:32:24 +01:00
committed by GitHub
parent 3960b0f99d
commit da527f1780
15 changed files with 543 additions and 374 deletions

View File

@ -1,11 +1,11 @@
SCHEMA >
`timestamp` DateTime64(3),
`workspaceId` String,
`functionId` String,
`durationInMs` Int64,
`success` Bool,
`errorType` LowCardinality(String),
`version` LowCardinality(String)
`timestamp` DateTime64(3) `json:$.timestamp`,
`workspaceId` String `json:$.workspaceId`,
`functionId` String `json:$.functionId`,
`durationInMs` Int64 `json:$.durationInMs`,
`success` Bool `json:$.success`,
`errorType` LowCardinality(String) `json:$.errorType`,
`version` LowCardinality(String) `json:$.version`
ENGINE MergeTree
ENGINE_PARTITION_KEY toYYYYMM(timestamp)