fix(ci): Only run tests if app/{src,tests} changes
This commit is contained in:
parent
e559cb2d71
commit
0559ec9013
1 changed files with 9 additions and 1 deletions
10
.github/workflows/test.yml
vendored
10
.github/workflows/test.yml
vendored
|
@ -1,4 +1,12 @@
|
|||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "app/tests/**"
|
||||
- "app/src/**"
|
||||
pull_request:
|
||||
paths:
|
||||
- "app/tests/**"
|
||||
- "app/src/**"
|
||||
|
||||
name: Test
|
||||
|
||||
|
|
Loading…
Reference in a new issue