Skip to content

build(deps-dev): Bump eslint-plugin-import from 2.30.0 to 2.31.0 #307

build(deps-dev): Bump eslint-plugin-import from 2.30.0 to 2.31.0

build(deps-dev): Bump eslint-plugin-import from 2.30.0 to 2.31.0 #307

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