Skip to content

Bump @types/xml2js from 0.4.13 to 0.4.14 #708

Bump @types/xml2js from 0.4.13 to 0.4.14

Bump @types/xml2js from 0.4.13 to 0.4.14 #708

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
paths:
- '**.js'
- '**.json'
- '**.yml'
push:
branches:
- main
paths:
- '**.js'
- '**.json'
- '**.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: actions/cache@v3
id: cache
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- # if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- run: npm test
- run: npm run lint
- if: github.event_name == 'pull_request' && ! contains(github.event.pull_request.user.login, 'dependabot[bot]')
name: Monitor coverage
id: coverage-monitor-clover
uses: ./
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
coverage_path: ".coverage/clover.xml"
comment_context: "Coverage from clover"
- if: github.event_name == 'pull_request' && ! contains(github.event.pull_request.user.login, 'dependabot[bot]')
name: Monitor coverage
id: coverage-monitor-json
uses: ./
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
coverage_path: ".coverage/coverage-summary.json"
comment_context: "Coverage from json-summary"
check: false