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