Skip to content

fix(deps): update dependency eslint-plugin-react to ^7.36.0 #661

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

fix(deps): update dependency eslint-plugin-react to ^7.36.0 #661

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:
- 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 test typecov
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true