From e3262c1e795112f604e9c7200508254b81bd5e43 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Fri, 20 Sep 2019 09:10:45 -0400 Subject: [PATCH] Ensure CI runs on pull requests. --- .github/workflows/nodejs.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index e3874a7..2f01912 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,7 +1,13 @@ name: CI on: - push: {} + push: + branches: + - master + - 'v*' # older version branches + tags: + - '*' + pull_request: {} schedule: - cron: '0 6 * * 0' # weekly, on sundays