Implement editing model servers #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |