Skip to content

Commit

Permalink
Feature/396 vercel cicd yml (#404)
Browse files Browse the repository at this point in the history
* Feat: CI yml 파일 작성

Related to: #396

* Docs: CI.yml 파일 작성

Related to: #396

* Docs: 잘못된 yml 파일 삭제

Related to: #396
  • Loading branch information
choiseona committed Jul 11, 2024
1 parent b123bbf commit 0569203
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Install dependencies
run: yarn install

- name: Build
run: yarn build

0 comments on commit 0569203

Please sign in to comment.