2021-04-15 13:17:19 +01:00
|
|
|
name: Bundle & Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout source files
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install nodejs
|
2021-04-15 13:18:36 +01:00
|
|
|
run: curl -fsSL https://deb.nodesource.com/setup_15.x | sudo -E bash -; sudo apt-get install -y nodejs
|
2021-04-15 13:17:19 +01:00
|
|
|
|
|
|
|
- name: Install Build Deps
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- name: Build VaultUI
|
|
|
|
run: npx webpack
|