From 8caae20e908e5e4f86a33b4e0acc8faa0f5487a8 Mon Sep 17 00:00:00 2001 From: Vaadin Bot Date: Tue, 8 Oct 2024 14:01:49 +0200 Subject: [PATCH] chore: enable validation on branch 24.4 (#245) (#264) Co-authored-by: Serhii Kulykov --- .github/workflows/validation.yml | 4 ++-- scripts/build.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index e532aa7e..6786f83a 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -2,12 +2,12 @@ name: Validation on: push: - branches: ['main', '1.3', '2.0', '2.1', '2.2', '2.3'] + branches: ['main', '1.3', '2.0', '2.1', '2.2', '2.3', '24.4'] paths-ignore: - 'README.md' - '.github/ISSUE_TEMPLATE/*' pull_request: - branches: ['main', '1.3', '2.0', '2.1', '2.2', '2.3'] + branches: ['main', '1.3', '2.0', '2.1', '2.2', '2.3', '24.4'] paths-ignore: - 'README.md' - '.github/ISSUE_TEMPLATE/*' diff --git a/scripts/build.ts b/scripts/build.ts index c9449acb..b54b015c 100644 --- a/scripts/build.ts +++ b/scripts/build.ts @@ -52,7 +52,7 @@ async function detectEntryPoints(patterns: string[], ignore: string[] = []) { }) ) .map((file) => new URL(file, srcURL)) - .map(fileURLToPath); + .map((url) => fileURLToPath(url)); } const commonOptions = {