Skip to content

build(deps): bump dom-parser from 0.1.6 to 1.1.5 #10

build(deps): bump dom-parser from 0.1.6 to 1.1.5

build(deps): bump dom-parser from 0.1.6 to 1.1.5 #10

Workflow file for this run

name: Build and Lint PRs
on: [pull_request]
jobs:
regular_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'npm'
- run: npm ci
- run: npm run build
legacy_peer_deps_build:
runs-on: ubuntu-latest
needs: regular_build
if: ${{ always() && needs.regular_build.result == 'failure' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'npm'
- run: npm ci --legacy-peer-deps
- run: npm run build