Return error if default exists #205
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: Common Frontend Tests | |
on: | |
pull_request: | |
types: | |
- 'opened' | |
- 'synchronize' | |
- 'reopened' | |
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: 18 | |
- name: Check frontend code formatting | |
run: | | |
cd frontend/common/kubeflow-common-lib | |
npm i | |
npm run format:check | |
- name: Check frontend code linting | |
run: | | |
cd frontend/common/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 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Kubeflow common library dependecies | |
run: | | |
cd frontend/common/kubeflow-common-lib | |
npm i | |
npm run test:prod |