Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Commit

Permalink
chore(env): create Build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
junhoyeo committed Jul 4, 2021
1 parent 00f03c1 commit e7db6b7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16'

- name: Install Dependencies
run: yarn --immutable

- name: Build
run: yarn build

0 comments on commit e7db6b7

Please sign in to comment.