From ba24bb9c48c167a15bc50033d5858b44a7a7f6e2 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 c8fe8da..c0752b1 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 }}