From 7284f3c3c734d97425530a7dea71b21c80beecc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Thu, 6 Aug 2020 15:58:35 +0900 Subject: [PATCH] add: github workflow --- .github/workflows/build.yml | 20 ++++++++++++++++++++ README.md | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..7ebaaeb --- /dev/null +++ b/.github/workflows/build.yml @@ -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 \ No newline at end of file diff --git a/README.md b/README.md index addd632..7f004a2 100644 --- a/README.md +++ b/README.md @@ -15,4 +15,4 @@ ### 커밋 메세지 커밋 메세지는 다음과 같이 작성하는 것을 추천드립니다. -[Conventional Commits](https://www.conventionalcommits.org/ko/v1.0.0/) \ No newline at end of file +[Conventional Commits](https://www.conventionalcommits.org/ko/v1.0.0/)