feat(editor): 에디터의 제목, 태그 구현 #67
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: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 레포지토리 체크아웃 중.. | |
uses: actions/checkout@v2 | |
- name: node 설치중.. | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20.2.0' | |
- name: yarn 설치중.. | |
run: npm install -g yarn | |
- name: 종속성 설치중... | |
run: yarn install | |
- name: 빌드 중.. | |
run: yarn build |