Skip to content

Commit 23f5cbf

Browse files
committed
add pr and push CI check
1 parent 5b26a80 commit 23f5cbf

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [master]
5+
pull_request:
6+
branches: [master]
7+
jobs:
8+
build:
9+
name: Build UI
10+
runs-on: ubuntu-18.04
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
- name: Setup node
15+
uses: actions/setup-node@v1
16+
with:
17+
node-version: 10
18+
- name: Packaging
19+
run: |
20+
npm install bower@~1.8.4 -g
21+
bower install
22+
npm install gulp@~3.8.8 -g
23+
npm install
24+
gulp dist
25+
mv es-dist clusternode-web
26+
zip -r EventStore.OSS.UI-v${{ steps.release.outputs.version}}.zip clusternode-web

0 commit comments

Comments
 (0)