Skip to content

Commit d3b1735

Browse files
committed
build(ci): implement github actions
1 parent f212cce commit d3b1735

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# GitHub Action Worflow to support Helix-UI CI Pipeline
2+
3+
name: Helix-UI CI Pipeline
4+
5+
on:
6+
push:
7+
branches:
8+
- master
9+
pull_request:
10+
branches:
11+
- master
12+
13+
jobs:
14+
build:
15+
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
uses: actions/setup-node@v1
21+
with:
22+
node-version: '10.x'
23+
- run: npm install -g yarn
24+
- run: yarn lint
25+
- run: yarn generate
26+
- run: yarn compile --prod
27+
- run: yarn test

0 commit comments

Comments
 (0)