add: github workflow

This commit is contained in:
원더 2020-08-06 15:58:35 +09:00
parent f02d9ec931
commit 7284f3c3c7
2 changed files with 21 additions and 1 deletions

20
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,20 @@
on:
- pull_request
- push
jobs:
build:
name: Test Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install node v12
uses: actions/setup-node@v1
with:
node-version: 12
- name: yarn install
run: yarn install
- name: Build
run: yarn build
env:
CI: false

View File

@ -15,4 +15,4 @@
### 커밋 메세지
커밋 메세지는 다음과 같이 작성하는 것을 추천드립니다.
[Conventional Commits](https://www.conventionalcommits.org/ko/v1.0.0/)
[Conventional Commits](https://www.conventionalcommits.org/ko/v1.0.0/)