Skip to content

test : msw, playwright 세팅 및 모든 리뷰 페이지 테스트 #406

test : msw, playwright 세팅 및 모든 리뷰 페이지 테스트

test : msw, playwright 세팅 및 모든 리뷰 페이지 테스트 #406

Workflow file for this run

name: Lint
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint