Skip to content

fix: configure the XML parser to maintain child order #15

fix: configure the XML parser to maintain child order

fix: configure the XML parser to maintain child order #15

Workflow file for this run

name: SVGI Testing
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install
run: npm install
- name: Run tests
run: npm run test:ci