-
Notifications
You must be signed in to change notification settings - Fork 15
51 lines (46 loc) · 1.39 KB
/
build-develop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# This workflow will build the code in the develop branch using npm.
name: Build develop branch
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- run: npm install
- run: npm run build:vosviewer
- run: npm run build:dimensions
- run: npm run build:zeta-alpha
- run: npm run build:rori
- run: npm run build-component-package
- name: Upload VOSviewer Online app artifact
uses: actions/upload-artifact@v3
with:
name: vosviewer-online-app
path: dist/vosviewer-online
- name: Upload Dimensions app artifact
uses: actions/upload-artifact@v3
with:
name: vosviewer-online-dimensions-app
path: dist/vosviewer-online-dimensions
- name: Upload Zeta Alpha app artifact
uses: actions/upload-artifact@v3
with:
name: vosviewer-online-zeta-alpa-app
path: dist/vosviewer-online-zeta-alpha
- name: Upload RoRI app artifact
uses: actions/upload-artifact@v3
with:
name: vosviewer-online-rori-app
path: dist/vosviewer-online-rori
- name: Upload VOSviewer Online component package artifact
uses: actions/upload-artifact@v3
with:
name: vosviewer-online-lib
path: lib