Skip to content

Revert "Allow custom ServingRuntimes (#92)" #58

Revert "Allow custom ServingRuntimes (#92)"

Revert "Allow custom ServingRuntimes (#92)" #58

Workflow file for this run

name: Frontend Test
on:
pull_request:
paths:
- frontend/**
jobs:
frontend-format-linting-check:
name: 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: Format code
run: |
npm install [email protected] --prefix ./frontend
make prettier-check
- name: Lint code
run: |
cd frontend
npm run lint-check
frontend-unit-tests:
name: Frontend Unit Tests
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: Fetch Kubeflow and install common code dependencies
run: |
COMMIT=$(cat frontend/COMMIT)
cd /tmp && git clone https://github.com/kubeflow/kubeflow.git
cd kubeflow
git checkout $COMMIT
cd components/crud-web-apps/common/frontend/kubeflow-common-lib
npm i
npm run build
npm link ./dist/kubeflow
- name: Install MWA dependencies
run: |
cd frontend
npm i
npm link kubeflow
- name: Run unit tests
run: |
cd frontend
npm run test:prod