Skip to content

Sync RHODS rhods-1.30 branch with ODH/notebook-controller v1.7 branch #2

Sync RHODS rhods-1.30 branch with ODH/notebook-controller v1.7 branch

Sync RHODS rhods-1.30 branch with ODH/notebook-controller v1.7 branch #2

name: Common Frontend Tests
on:
pull_request:
paths:
- components/crud-web-apps/common/frontend/kubeflow-common-lib/**
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: 12
- name: Check frontend code formatting
run: |
cd components/crud-web-apps/common/frontend/kubeflow-common-lib
npm i
npm run format:check
- name: Check frontend code linting
run: |
cd components/crud-web-apps/common/frontend/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: 12
- name: Install Kubeflow common library dependecies
run: |
cd components/crud-web-apps/common/frontend/kubeflow-common-lib
npm i
npm run test:prod