Skip to content

Bump eslint-plugin-react from 7.37.2 to 7.37.3 in /web #230

Bump eslint-plugin-react from 7.37.2 to 7.37.3 in /web

Bump eslint-plugin-react from 7.37.2 to 7.37.3 in /web #230

name: "[CI] Continuous Integration"
on:
pull_request:
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Repository Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: v18.x
- name: Install Dependencies
working-directory: ./web
run: npm install
- name: Lint
working-directory: ./web
run: npm run lint
- name: Lint Fix
working-directory: ./web
run: npm run lint:fix
test:
runs-on: ubuntu-latest
steps:
- name: Repository Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: v18.x
- name: Install Dependencies
working-directory: ./web
run: npm install
- name: Test - Jest
working-directory: ./web
run: npm test