[Snyk] Upgrade fast-xml-parser from 4.4.1 to 4.5.0 #122
This file contains 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: 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' |