Skip to content

지도 요청을 디바운스로 처리하는 기능을 구현한다 #19

지도 요청을 디바운스로 처리하는 기능을 구현한다

지도 요청을 디바운스로 처리하는 기능을 구현한다 #19

name: frontend-test
on:
pull_request:
branches:
- main
- develop
paths:
- frontend/**
- .github/**
permissions:
contents: read
jobs:
test:
name: test-when-pull-request
runs-on: ubuntu-latest
environment: test
defaults:
run:
working-directory: ./frontend
steps:
- name: Checkout PR
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Test
run: npm run test