forked from kiali/kiali-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 1.3 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# This is a basic workflow to help you get started with Actions
name: Kiali-UI CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [master]
pull_request:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14']
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependencies and verify lockfile
# yarn install will update the yarn.lock file when it doesn't match the package.json.
# This can happen when the lockfile has been updated but the package.json file was not.
# The '--frozen-lockfile' flag ensures that the yarn.lock file remains the same after yarn install.
run: yarn install --frozen-lockfile
- run: yarn pretty-quick --check --verbose --branch origin/master
- run: yarn build:dev
- run: yarn test