Limit CI runs to pushes to master and pull requests against master

Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
Tilman Vatteroth 2020-11-26 21:21:12 +01:00
parent 66ad73d853
commit 9fb5dbbd22
No known key found for this signature in database
GPG key ID: DEBDB3F34641B019

View file

@ -1,6 +1,10 @@
name: Node.js CI
on: [push, pull_request]
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
static-tests: