Files
kubevela/.github/workflows/dashboard.yml

28 lines
493 B
YAML

name: Dashboard
on:
push:
branches: [ master ]
pull_request:
branches: [master]
defaults:
run:
working-directory: ./dashboard
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn lint
- run: yarn build