Skip to content

Accept the namespace axis as valid XPath #139

Accept the namespace axis as valid XPath

Accept the namespace axis as valid XPath #139

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2025-2026 Max Trunnikov
# SPDX-License-Identifier: MIT
---
name: fixtures
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
fixtures:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Fail on inline stylesheet fixtures in tests
run: |
if grep -rnE '<\?xml|<xsl:' test/ --include='*.test.js'; then
echo "::error::Test stylesheet fixtures must be committed resources under test/resources, not inline strings"
exit 1
fi