mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-17 16:44:49 -04:00
Merge pull request #598 from hedgedoc/fix/reduce-github-action-runs
Limit CI runs to pushes to master and pull requests against master
This commit is contained in:
commit
07f72adc54
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
|
name: Node.js CI
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
static-tests:
|
static-tests:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue