mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
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:
parent
66ad73d853
commit
9fb5dbbd22
1 changed files with 5 additions and 1 deletions
6
.github/workflows/node.js.yml
vendored
6
.github/workflows/node.js.yml
vendored
|
@ -1,6 +1,10 @@
|
|||
name: Node.js CI
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
static-tests:
|
||||
|
|
Loading…
Reference in a new issue