Skip to content

fix(deps): update dependency eslint-plugin-react to ^7.33.2 #336

fix(deps): update dependency eslint-plugin-react to ^7.33.2

fix(deps): update dependency eslint-plugin-react to ^7.33.2 #336

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
ci:
name: Lint and Test with Node.js ${{ matrix.node }}
strategy:
matrix:
node:
- 16
- 18
- 20
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn --frozen-lockfile --ignore-engines
- name: Build, Lint and Test
run: |
yarn build
yarn run-p lint typecov
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true