Skip to content

Commit

Permalink
ci: add build pipeline for VueJS
Browse files Browse the repository at this point in the history
  • Loading branch information
hbollon committed Jul 22, 2021
1 parent 56c81b8 commit d2b04fd
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-vue.yml
@@ -0,0 +1,22 @@
name: Build-VueJS

on: [push, pull_request]

jobs:
build-vue:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./static/terraboard-vuejs
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup NodeJS
uses: actions/setup-node@master

- name: Install dependencies
run: npm install

- name: Build project
run: npm run build

0 comments on commit d2b04fd

Please sign in to comment.