Increment version to 1.26.24. Update Release Notes and Windows drivers. #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate XML | |
on: | |
push: | |
branches: [ "master" ] | |
paths: | |
- 'Translations/*' | |
- 'src/Common/Language.xml' | |
- '.github/workflows/xmlvalidate.*' | |
pull_request: | |
branches: [ "master" ] | |
paths: | |
- 'Translations/*' | |
- 'src/Common/Language.xml' | |
- '.github/workflows/xmlvalidate.*' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'latest' | |
- name: Install fast-xml-parser | |
run: npm install [email protected] -g | |
- name: Run XML validator script | |
run: ${{ github.workspace }}/.github/workflows/xmlvalidate.sh "${{ github.workspace }}" |