summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTilman Vatteroth2020-11-26 21:21:12 +0100
committerTilman Vatteroth2020-11-26 21:22:03 +0100
commit9fb5dbbd2205035356fe1d82ba6645c2a74e11f8 (patch)
tree140f4ef4fb1a411de91ac0d9d321ae60d8b7cafa /.github
parent66ad73d853d15423c63b823102931b35ef93722a (diff)
Limit CI runs to pushes to master and pull requests against master
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/node.js.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
index bff19dad..60d2c3ed 100644
--- a/.github/workflows/node.js.yml
+++ b/.github/workflows/node.js.yml
@@ -1,6 +1,10 @@
name: Node.js CI
-on: [push, pull_request]
+on:
+ push:
+ branches: [master]
+ pull_request:
+ branches: [master]
jobs:
static-tests: