Get started with github workflows.
This commit is contained in:
parent
a3ab8ba7cd
commit
895afe21cb
24
.github/workflows/bundle.yml
vendored
Normal file
24
.github/workflows/bundle.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
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
|
||||
run: curl -fsSL https://deb.nodesource.com/setup_15.x | bash -; apt-get install -y nodejs
|
||||
|
||||
- name: Install Build Deps
|
||||
run: npm install
|
||||
|
||||
- name: Build VaultUI
|
||||
run: npx webpack
|
Loading…
Reference in a new issue