Bump @babel/traverse from 7.15.4 to 7.23.2 in /pkg/ui/v1beta1/frontend #1553
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@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 12.18.1 | |
- 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@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 12.18.1 | |
- name: Fetch Kubeflow and install common code dependencies | |
run: | | |
COMMIT=$(cat pkg/ui/v1beta1/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 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@v3 | |
- name: Setup node version to 12 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 12 | |
- name: Fetch Kubeflow and install common code dependencies | |
run: | | |
COMMIT=$(cat pkg/ui/v1beta1/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 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 |