Skip to content

Commit 420a802

Browse files
committed
chore: update workflows to trigger on specific file paths for code quality and tests
1 parent f980699 commit 420a802

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/code-quality.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name: Code Quality
33
on:
44
push:
55
branches: [main]
6+
paths:
7+
- "src/**"
8+
- "tests/**"
9+
- "scripts/**"
10+
- "*.json"
611
pull_request:
712

813
concurrency:

.github/workflows/run-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Tests
33
on:
44
push:
55
branches: [main]
6+
paths:
7+
- "tests/**"
8+
- "package.json"
9+
610
pull_request:
711

812
concurrency:

0 commit comments

Comments
 (0)