Skip to content

Commit aff5a34

Browse files
aramb-devCopilot
andcommitted
ci(github): update workflow branch syntax
Refactor the branch selection syntax in Biome and Typecheck workflows from a single-line array to a multi-line list format for improved readability and consistency with standard YAML practices. Co-authored-by: Copilot <copilot@github.com>
1 parent 75acb6a commit aff5a34

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/biome.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: Biome
22

33
on:
44
push:
5-
branches: ["**"]
5+
branches:
6+
- "**"
67
pull_request:
7-
branches: ["**"]
8+
branches:
9+
- "**"
810

911
jobs:
1012
biome:

.github/workflows/typecheck.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: Typecheck
22

33
on:
44
push:
5-
branches: ["**"]
5+
branches:
6+
- "**"
67
pull_request:
7-
branches: ["**"]
8+
branches:
9+
- "**"
810

911
jobs:
1012
typecheck:

0 commit comments

Comments
 (0)