fix: Resolve errors in e2e tests for cypress in Katib UI #1585
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: | |
- pkg/ui/v1beta1/frontend/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Code format and lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14.21.3 | |
- name: Format katib code | |
run: | | |
npm install prettier --prefix ./pkg/ui/v1beta1/frontend | |
make prettier-check | |
- name: Lint katib code | |
run: | | |
cd pkg/ui/v1beta1/frontend | |
npm run lint-check | |
frontend-unit-tests: | |
name: Frontend Unit Tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14.21.3 | |
- name: Fetch Kubeflow and install common code dependencies | |
run: | | |
COMMIT=$(cat pkg/ui/v1beta1/frontend/COMMIT) | |
cd /tmp && git clone https://github.com/tariq-hasan/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 KWA dependencies | |
run: | | |
cd pkg/ui/v1beta1/frontend | |
npm i | |
npm link kubeflow | |
- name: Run unit tests | |
run: | | |
cd pkg/ui/v1beta1/frontend | |
npm run test:prod | |
frontend-ui-tests: | |
name: UI tests with Cypress | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node version to 14 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14 | |
- name: Fetch Kubeflow and install common code dependencies | |
run: | | |
COMMIT=$(cat pkg/ui/v1beta1/frontend/COMMIT) | |
cd /tmp && git clone https://github.com/tariq-hasan/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 KWA dependencies | |
run: | | |
cd pkg/ui/v1beta1/frontend | |
npm i | |
npm link kubeflow | |
- name: Serve UI & run Cypress tests in Chrome and Firefox | |
run: | | |
cd pkg/ui/v1beta1/frontend | |
npm run start & npx wait-on http://localhost:4200 | |
npm run ui-test-ci-all |