refactor: 맵 리스트를 API 명세에 맞게 마이그레이션 #1131
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [pull_request] | |
jobs: | |
changes: | |
runs-on: ubuntu-latest | |
outputs: | |
frontend: ${{ steps.filter.outputs.frontend }} | |
steps: | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
frontend: | |
- 'frontend/**' | |
FE-Test: | |
needs: changes | |
if: ${{ needs.changes.outputs.frontend == 'true' }} | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./frontend | |
steps: | |
- uses: actions/checkout@v2 | |
- name: yarn install | |
run: yarn install | |
working-directory: ${{ env.working-directory }} | |
- name: yarn test | |
run: yarn test:ci | |
working-directory: ${{ env.working-directory }} |