From 1d6bd57dc84e4bf13d66c9ed581813b24352dff3 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Sat, 14 Dec 2024 19:52:36 +0000 Subject: [PATCH] chore(ci): limit running tests to only changes to specific targets (#10) --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4dc77d..c280da8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,8 +5,16 @@ name: CI on: push: branches: ["main"] + paths: + - "recipes/**" + - "package.json" + - "package-lock.json" pull_request: branches: ["main"] + paths: + - "recipes/**" + - "package.json" + - "package-lock.json" types: - opened - ready_for_review