Skip to content

feat: (fe) docker 설정 추가 #37

feat: (fe) docker 설정 추가

feat: (fe) docker 설정 추가 #37

Workflow file for this run

name: Frontend CI
on:
pull_request:
branches:
- main
- develop
paths:
- frontend/**
- .github/** # Github Actions 작업을 위한 포함
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.10.0'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- name: Install node packages
run: yarn
- name: Component test
run: yarn run test
- name: TypeScript test
run: yarn run typecheck