Skip to content

Bump vue from 2.6.12 to 3.0.0 in /web-app/client #16

Bump vue from 2.6.12 to 3.0.0 in /web-app/client

Bump vue from 2.6.12 to 3.0.0 in /web-app/client #16

Workflow file for this run

name: Build
on: [push]
jobs:
build:
defaults:
run:
working-directory: web-app/client
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.18]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install
run: npm ci
- name: build
run: npm run build --if-present
- name: test
run: npm test
env:
CI: true
- name: Deploy 🚀
uses: JamesIves/[email protected]
if: ${{ github.ref == 'refs/heads/master'}}
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: web-app/client/dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch