Skip to content

Commit

Permalink
chore: enable validation on branch 24.4 (#245) (#264)
Browse files Browse the repository at this point in the history
Co-authored-by: Serhii Kulykov <[email protected]>
  • Loading branch information
vaadin-bot and web-padawan authored Oct 8, 2024
1 parent 42de5cd commit 8caae20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*'
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 8caae20

Please sign in to comment.