Skip to content

chore(deps): bump fast-xml-parser from 3.21.1 to 4.2.5 #3838

chore(deps): bump fast-xml-parser from 3.21.1 to 4.2.5

chore(deps): bump fast-xml-parser from 3.21.1 to 4.2.5 #3838

Workflow file for this run

name: test
# On every pull request, but only on push to master
on:
push:
branches:
- master
- dev
- release
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
steps:
- uses: actions/checkout@v3
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Bootstrap
run: |
yarn bootstrap
- name: Run tests
run: |
npm run test ci
- name: Coveralls
if: matrix.node-version == 16
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}