Skip to content

fix: upgrade fast-xml-parser from 4.3.2 to 4.3.3 #98

fix: upgrade fast-xml-parser from 4.3.2 to 4.3.3

fix: upgrade fast-xml-parser from 4.3.2 to 4.3.3 #98

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest]
node: ['20']
name: Node ${{ matrix.node }} (${{ matrix.platform }})
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: install dependencies
run: yarn install --frozen-lockfile
- name: lint code
run: yarn run lint
- name: run tests
run: yarn run test
- name: get code coverage report
run: npx codecov
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
release:
name: do semantic release
runs-on: 'ubuntu-latest'
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: install dependencies
run: yarn install --frozen-lockfile --ignore-engines
- name: build script
run: yarn run build
- name: release
run: yarn run semantic-release
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
if: github.event_name == 'push' && github.ref == 'refs/heads/master'