This is an automated email from the ASF dual-hosted git repository. jan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pouchdb.git
commit c68f02feff8a2c402cd7f6a90254901bb18bd58e Author: Julia Krüger <[email protected]> AuthorDate: Mon Mar 9 11:56:59 2026 +0100 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 71a503c93..ab5f40639 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
