Skip to content

build(deps): bump fast-xml-parser from 4.2.5 to 4.4.1 #75

build(deps): bump fast-xml-parser from 4.2.5 to 4.4.1

build(deps): bump fast-xml-parser from 4.2.5 to 4.4.1 #75

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
# Version Spec of the version to use. Examples: 10.x, 10.15.1, >=10.15.0
node-version: ">=18"
- name: Lint, test, and build
run: |
npm install -g yarn
yarn install
yarn lint
yarn run nyc --reporter=json ./node_modules/.bin/mocha -R mocha-junit-reporter --reporter-options mochaFile=./testresults.xml
yarn build
- uses: codecov/[email protected]
with:
file: ./coverage/coverage-final.json
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true