Browse Source

fix(ci): Only run tests if app/{src,tests} changes

xmkb
Pete Johanson 4 years ago
parent
commit
0559ec9013
  1. 10
      .github/workflows/test.yml

10
.github/workflows/test.yml

@ -1,4 +1,12 @@ @@ -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…
Cancel
Save