Skip to content

Commit 29a7494

Browse files
committed
feat: add github actions for build process
1 parent b4d72a7 commit 29a7494

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "Build"
2+
on:
3+
pull_request:
4+
push:
5+
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- run: yarn install
13+
- run: yarn build

0 commit comments

Comments
 (0)