Skip to content

Commit 9181d5d

Browse files
authored
Merge branch 'main' into pages_to_tests_mapping
2 parents ca860bc + e9cd2c6 commit 9181d5d

File tree

99 files changed

+4581
-1645
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+4581
-1645
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
**/node_modules
22
**/dist
33
hack/
4+
cypress/

.eslintrc.cjs

Lines changed: 0 additions & 144 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 83 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,91 @@
11
name: 🐞 Bug
22
description: File a bug/issue
33
title: "[BUG] <title>"
4-
labels: ["kind/bug" , "needs-triage"]
4+
labels: ["kind/bug", "needs-triage"]
55
projects: ["konveyor/67"]
66
body:
7-
- type: checkboxes
8-
attributes:
9-
label: Is there an existing issue for this?
10-
description: Please search to see if an issue already exists for the bug you encountered.
11-
options:
12-
- label: I have searched the existing issues
7+
- type: checkboxes
8+
attributes:
9+
label: Is there an existing issue for this?
10+
description: Please search to see if an issue already exists for the bug you encountered.
11+
options:
12+
- label: I have searched the existing issues
13+
required: true
14+
- type: input
15+
attributes:
16+
label: Konveyor version
17+
description: What is the Konveyor version you're using?
18+
validations:
1319
required: true
14-
- type: input
15-
attributes:
16-
label: Konveyor version
17-
description: What is the Konveyor version you're using?
18-
validations:
19-
required: true
20-
- type: dropdown
21-
id: priority
22-
attributes:
23-
label: Priority
24-
description: What is the prority of this bug?
25-
options:
26-
- Critical
27-
- Blocker
28-
- Major
29-
- Minor
30-
- Undefined (Default)
31-
default: 0
32-
validations:
33-
required: true
34-
- type: textarea
35-
attributes:
36-
label: Current Behavior
37-
description: A concise description of what you're experiencing.
38-
validations:
39-
required: false
40-
- type: textarea
41-
attributes:
42-
label: Expected Behavior
43-
description: A concise description of what you expected to happen.
44-
validations:
45-
required: false
46-
- type: dropdown
47-
id: how_reproducible
48-
attributes:
49-
label: How Reproducible
50-
description: How often the bug can be reproduced?
51-
options:
52-
- Always (Default)
53-
- Sometimes
54-
- Never
55-
- Other (Add more details in 'Anything else')
56-
default: 0
57-
validations:
58-
required: true
59-
- type: textarea
60-
attributes:
61-
label: Steps To Reproduce
62-
description: Steps to reproduce the behavior.
63-
placeholder: |
64-
1. In this environment...
65-
2. With this config...
66-
3. Run '...'
67-
4. See error...
68-
validations:
69-
required: false
70-
- type: textarea
71-
attributes:
72-
label: Environment
73-
description: |
74-
examples:
75-
- **OS**: Ubuntu 20.04
76-
- **Node**: 13.14.0
77-
- **npm**: 7.6.3
78-
value: |
20+
- type: dropdown
21+
id: priority
22+
attributes:
23+
label: Priority
24+
description: What is the priority of this bug?
25+
options:
26+
- Critical
27+
- Blocker
28+
- Major
29+
- Minor
30+
- Undefined (Default)
31+
default: 0
32+
validations:
33+
required: true
34+
- type: textarea
35+
attributes:
36+
label: Current Behavior
37+
description: A concise description of what you're experiencing.
38+
validations:
39+
required: false
40+
- type: textarea
41+
attributes:
42+
label: Expected Behavior
43+
description: A concise description of what you expected to happen.
44+
validations:
45+
required: false
46+
- type: dropdown
47+
id: how_reproducible
48+
attributes:
49+
label: How Reproducible
50+
description: How often the bug can be reproduced?
51+
options:
52+
- Always (Default)
53+
- Sometimes
54+
- Never
55+
- Other (Add more details in 'Anything else')
56+
default: 0
57+
validations:
58+
required: true
59+
- type: textarea
60+
attributes:
61+
label: Steps To Reproduce
62+
description: Steps to reproduce the behavior.
63+
placeholder: |
64+
1. In this environment...
65+
2. With this config...
66+
3. Run '...'
67+
4. See error...
68+
validations:
69+
required: false
70+
- type: textarea
71+
attributes:
72+
label: Environment
73+
description: |
74+
examples:
75+
- **OS**: Ubuntu 20.04
76+
- **Node**: 13.14.0
77+
- **npm**: 7.6.3
78+
value: |
7979
- OS:
80-
render: markdown
81-
validations:
82-
required: false
83-
- type: textarea
84-
attributes:
85-
label: Anything else?
86-
description: |
87-
Links? References? Anything that will give us more context about the issue you are encountering!
80+
render: markdown
81+
validations:
82+
required: false
83+
- type: textarea
84+
attributes:
85+
label: Anything else?
86+
description: |
87+
Links? References? Anything that will give us more context about the issue you are encountering!
8888
89-
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
90-
validations:
91-
required: false
89+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
90+
validations:
91+
required: false

.github/workflows/ci-repo.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ jobs:
110110
npm clean-install --ignore-scripts
111111
112112
- name: Lint sources
113-
run: npm run lint
113+
run: |
114+
npm run postinstall
115+
npm run format:check
116+
npm run lint
114117
115118
- name: Build
116119
run: npm run build

0 commit comments

Comments
 (0)