From d08aae835407fadcc1c25cb5913bd9b722c8988c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julia=20Kr=C3=BCger?= Date: Mon, 9 Mar 2026 11:56:59 +0100 Subject: [PATCH] ci: only run tests for non-docs changes --- .github/workflows/ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcbe793730..1e05ec4a5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,21 @@ name: PouchDB CI on: - push: {} + push: + paths-ignore: + - '.github/actions/**' + - '.github/workflows/docs.yml' + - 'package.json' + - 'bin/**' + - 'docs/**' pull_request: branches: [master] + paths-ignore: + - '.github/actions/**' + - '.github/workflows/docs.yml' + - 'package.json' + - 'bin/**' + - 'docs/**' env: NODE_VERSION: 22