-
Notifications
You must be signed in to change notification settings - Fork 31
/
.bacon.yml
106 lines (96 loc) · 2.76 KB
/
.bacon.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
test_suites:
- name: "Build"
criteria: MERGE
queue_name: ci-queue-productionJenga-AL2023
script_path: /root/okta/odyssey/scripts
sort_order: "4"
steps:
- event: SOURCE
action: setup.sh
name: Setup Environment
- event: COMMAND
action: yarn build
name: Build Packages
timeout: "20"
- name: "Code Coverage"
criteria: MERGE
queue_name: ci-queue-productionJenga-AL2023
script_name: odyssey-code-coverage
script_path: /root/okta/odyssey/scripts
sort_order: "6"
timeout: "20"
- name: "Storybook Coverage"
criteria: OPTIONAL
queue_name: ci-queue-prodJenga-Ubuntu20 # Playwright only works with certain distros of Linux
script_name: storybook-code-coverage
script_path: /root/okta/odyssey/scripts
sort_order: "6"
timeout: "20"
- name: "Interaction Test"
criteria: MERGE
queue_name: ci-queue-prodJenga-Ubuntu20 # Playwright only works with certain distros of Linux
script_path: /root/okta/odyssey/scripts
script_name: interaction-test
sort_order: "5"
timeout: "20"
- name: "Lint"
criteria: MERGE
queue_name: ci-queue-productionJenga-AL2023
script_path: /root/okta/odyssey/scripts
sort_order: "1"
steps:
- event: SOURCE
action: setup.sh
name: Setup Environment
- event: COMMAND
action: yarn lint
name: Lint Code
timeout: "20"
- name: "Publish Package"
criteria: MERGE
queue_name: ci-queue-productionJenga-AL2023
script_name: publish-packages
script_path: /root/okta/odyssey/scripts
sort_order: "8"
timeout: "15"
- name: "Publish Storybook"
criteria: MERGE
queue_name: ci-queue-productionJenga-AL2023
script_name: publish-storybook
script_path: /root/okta/odyssey/scripts
sort_order: "9"
timeout: "15"
- name: "Semgrep"
criteria: MERGE
queue_name: ci-queue-productionJenga-AL2023
script_name: semgrep
script_path: /root/okta/odyssey/scripts
sort_order: "10"
timeout: "10"
- name: "Test"
criteria: MERGE
queue_name: ci-queue-productionJenga-AL2023
script_name: unit-test
script_path: /root/okta/odyssey/scripts
sort_order: "3"
timeout: "20"
- name: "Typecheck"
criteria: MERGE
queue_name: ci-queue-productionJenga-AL2023
script_path: /root/okta/odyssey/scripts
sort_order: "2"
steps:
- event: SOURCE
action: setup.sh
name: Setup Environment
- event: COMMAND
action: yarn typecheck
name: Typecheck Code
timeout: "20"
- name: "Visual Regression Test"
criteria: MERGE
queue_name: ci-queue-productionJenga-AL2023
script_name: visual-regression-test
script_path: /root/okta/odyssey/scripts
sort_order: "7"
timeout: "20"