From 416e790b7bb6bb463e5a916c924321bd49369c5c Mon Sep 17 00:00:00 2001 From: cloudinary-pkoniu Date: Mon, 22 Dec 2025 11:43:03 +0100 Subject: [PATCH 1/2] fix: CI run only on PRs and pushes to master --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2133bc3c..e82e4d20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: ["**"] + branches: + - master pull_request: - branches: ["**"] jobs: test: From 4b566901f876d56be880dcacf487236041d2a2e1 Mon Sep 17 00:00:00 2001 From: cloudinary-pkoniu Date: Mon, 22 Dec 2025 11:45:44 +0100 Subject: [PATCH 2/2] chore: CI run on node@24 lts --- .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 e82e4d20..39cda3da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - node: ["9", "10", "12", "14", "16", "18", "20", "22"] + node: ["9", "10", "12", "14", "16", "18", "20", "22", "24"] runs-on: ubuntu-latest timeout-minutes: 30 steps: