make CI only run when affected
This commit is contained in:
parent
9e9081fa4a
commit
48b40ee30f
4
.github/workflows/go.yml
vendored
4
.github/workflows/go.yml
vendored
|
@ -3,10 +3,12 @@ name: Go
|
|||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
paths:
|
||||
- "**.go"
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
build-gotelem:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
7
.github/workflows/nodejs.yml
vendored
7
.github/workflows/nodejs.yml
vendored
|
@ -1,9 +1,12 @@
|
|||
name: Node.js CI
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "web/**"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
build-openmct:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
|
|
Loading…
Reference in a new issue