From 925daf9a5f7627ff2b721ea74dfd6edc66872a52 Mon Sep 17 00:00:00 2001 From: Anton Gilgur Date: Tue, 31 Dec 2024 12:54:39 -0500 Subject: [PATCH] fix(ci): run GH action on PRs as well - `push` works for all PRs from my own branches, but not for PRs from forks from external contributors - see also https://github.com/agilgur5/mst-persist/blob/4f8b9f116d1645112ac2eb790d41f007916b9ff0/.github/workflows/ci.yml#L2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67af862..46ae3bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,5 @@ name: CI -on: [push] +on: [push, pull_request] jobs: ci: name: CI - Node ${{ matrix.node-version }}, ${{ matrix.os }}