Skip to content

build(deps): bump react-dom and @types/react-dom #652

build(deps): bump react-dom and @types/react-dom

build(deps): bump react-dom and @types/react-dom #652

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
- run: npm run lint
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
- run: npm run lint