mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
ci: Stop disabling linting rules that are explicitly set to warn (no-changelog) (#7669)
This commit is contained in:
committed by
GitHub
parent
ad596abeb9
commit
5edf722209
@@ -72,7 +72,6 @@ describe('GET /workflow-history/:workflowId', () => {
|
||||
),
|
||||
);
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const last = versions.sort((a, b) => b.createdAt.valueOf() - a.createdAt.valueOf())[0]! as any;
|
||||
delete last.nodes;
|
||||
delete last.connections;
|
||||
@@ -101,7 +100,6 @@ describe('GET /workflow-history/:workflowId', () => {
|
||||
new Array(10).fill(undefined).map(async (_) => createWorkflowHistoryItem(workflow2.id)),
|
||||
);
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const last = versions.sort((a, b) => b.createdAt.valueOf() - a.createdAt.valueOf())[0]! as any;
|
||||
delete last.nodes;
|
||||
delete last.connections;
|
||||
@@ -125,7 +123,6 @@ describe('GET /workflow-history/:workflowId', () => {
|
||||
),
|
||||
);
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const last = versions.sort((a, b) => b.createdAt.valueOf() - a.createdAt.valueOf())[0]! as any;
|
||||
delete last.nodes;
|
||||
delete last.connections;
|
||||
@@ -149,7 +146,6 @@ describe('GET /workflow-history/:workflowId', () => {
|
||||
),
|
||||
);
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const last = versions.sort((a, b) => b.createdAt.valueOf() - a.createdAt.valueOf())[5]! as any;
|
||||
delete last.nodes;
|
||||
delete last.connections;
|
||||
|
||||
Reference in New Issue
Block a user