Skip to content

fix(dropdown) : 드롭다운 외부클릭 시 닫기 기능을 추가합니다. #91

fix(dropdown) : 드롭다운 외부클릭 시 닫기 기능을 추가합니다.

fix(dropdown) : 드롭다운 외부클릭 시 닫기 기능을 추가합니다. #91

Workflow file for this run

name: eslint check
on:
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: ./frontend
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
CI="false" npm run lint
working-directory: ${{ env.working-directory }}