Skip to content

add updates to trivy #220

add updates to trivy

add updates to trivy #220

name: Common Frontend Tests
on:
pull_request:
types:
- 'opened'
- 'synchronize'
- 'reopened'
jobs:
frontend-format-lint-check:
name: Check code format and lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Check frontend code formatting
run: |
cd frontend/common/kubeflow-common-lib
npm i
npm run format:check
- name: Check frontend code linting
run: |
cd frontend/common/kubeflow-common-lib
npm i
npm run lint-check
frontend-unit-tests:
runs-on: ubuntu-latest
name: Unit tests
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node version to 12
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Kubeflow common library dependecies
run: |
cd frontend/common/kubeflow-common-lib
npm i
npm run test:prod