Skip to content

Commit 584edce

Browse files
add github workflow
1 parent cc0e158 commit 584edce

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build project on push to master
2+
3+
on:
4+
push:
5+
branches:
6+
-master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: use Node.js
15+
uses: actions/setup-node@v1
16+
with:
17+
node-version: '12.x'
18+
- name: install dependencies
19+
run: yarn
20+
- name: build project
21+
run: yarn build

0 commit comments

Comments
 (0)