Merge pull request #105 from koreanbots/develop

add: github workflow
This commit is contained in:
Junseo Park 2020-08-06 16:00:08 +09:00 committed by GitHub
commit 2711bf5145
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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