Skip to content

chore(deps): upgrade eslint-plugin-react to v7.35.0 #2055

chore(deps): upgrade eslint-plugin-react to v7.35.0

chore(deps): upgrade eslint-plugin-react to v7.35.0 #2055

Workflow file for this run

name: Test
on:
push:
branches: ['dev', 'feature/**', 'renovate/**']
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
# SETUP
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'yarn'
# TEST
- if: ${{ github.event_name != 'pull_request' }}
run: yarn --immutable --immutable-cache
- if: ${{ github.event_name == 'pull_request' }}
run: yarn --immutable --immutable-cache --check-cache
- run: |
yarn test --skipNxCache
yarn build:prod --skipNxCache