fix: Fix formatting/linting for CI (no-changelog) (#5264)
* ⬆️ Upgrade Prettier * 📦 Update `pnpm-lock.yaml` * 🎨 Format all packages * 🔧 Specify `prettierPath`
This commit is contained in:
@@ -21,8 +21,6 @@ export class AddTriggerCountColumn1669823906994 implements MigrationInterface {
|
||||
async down(queryRunner: QueryRunner): Promise<void> {
|
||||
const tablePrefix = config.getEnv('database.tablePrefix');
|
||||
|
||||
await queryRunner.query(
|
||||
`ALTER TABLE ${tablePrefix}workflow_entity DROP COLUMN triggerCount`,
|
||||
);
|
||||
await queryRunner.query(`ALTER TABLE ${tablePrefix}workflow_entity DROP COLUMN triggerCount`);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,9 +32,7 @@ export class RemoveWorkflowDataLoadedFlag1671726148420 implements MigrationInter
|
||||
return undefined;
|
||||
});
|
||||
|
||||
await queryRunner.query(
|
||||
`ALTER TABLE ${tablePrefix}workflow_entity DROP COLUMN dataLoaded`,
|
||||
);
|
||||
await queryRunner.query(`ALTER TABLE ${tablePrefix}workflow_entity DROP COLUMN dataLoaded`);
|
||||
|
||||
logMigrationEnd(this.name);
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ export const eventNamesAudit = [
|
||||
'n8n.audit.workflow.deleted',
|
||||
'n8n.audit.workflow.updated',
|
||||
] as const;
|
||||
export type EventNamesAuditType = typeof eventNamesAudit[number];
|
||||
export type EventNamesAuditType = (typeof eventNamesAudit)[number];
|
||||
|
||||
// --------------------------------------
|
||||
// EventMessage class for Audit events
|
||||
|
||||
@@ -4,7 +4,7 @@ import type { AbstractEventMessageOptions } from './AbstractEventMessageOptions'
|
||||
import type { AbstractEventPayload } from './AbstractEventPayload';
|
||||
|
||||
export const eventNamesNode = ['n8n.node.started', 'n8n.node.finished'] as const;
|
||||
export type EventNamesNodeType = typeof eventNamesNode[number];
|
||||
export type EventNamesNodeType = (typeof eventNamesNode)[number];
|
||||
|
||||
// --------------------------------------
|
||||
// EventMessage class for Node events
|
||||
|
||||
@@ -10,7 +10,7 @@ export const eventNamesWorkflow = [
|
||||
'n8n.workflow.failed',
|
||||
] as const;
|
||||
|
||||
export type EventNamesWorkflowType = typeof eventNamesWorkflow[number];
|
||||
export type EventNamesWorkflowType = (typeof eventNamesWorkflow)[number];
|
||||
|
||||
// --------------------------------------
|
||||
// EventMessage class for Workflow events
|
||||
|
||||
Reference in New Issue
Block a user