Skip to content

Commit bebb159

Browse files
committed
Enhance GitHub workflows with concurrency settings
- Added concurrency configuration to both biome.yml and playwright.yml workflows. - Ensured that in-progress jobs are canceled when a new job is triggered for the same pull request, improving resource management and build efficiency.
1 parent fc4cb61 commit bebb159

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/biome.yml

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
push:
55
pull_request:
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
9+
cancel-in-progress: true
10+
711
jobs:
812
quality:
913
runs-on: ubuntu-latest

.github/workflows/playwright.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
name: Playwright Tests
2+
23
on:
34
push:
45
branches: [main, master]
56
pull_request:
67
branches: [main, master]
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
713
jobs:
814
test:
915
timeout-minutes: 60

0 commit comments

Comments
 (0)