Only run the backend CI when a change happens in the server (#73)
This commit is contained in:
parent
3a879edc23
commit
06d847dfa3
1 changed files with 6 additions and 1 deletions
7
.github/workflows/server-CI.yaml
vendored
7
.github/workflows/server-CI.yaml
vendored
|
@ -1,6 +1,11 @@
|
|||
name: Server CI
|
||||
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- 'server/**'
|
||||
- '.github/workflows/**'
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
Loading…
Reference in a new issue