File tree Expand file tree Collapse file tree 8 files changed +12
-12
lines changed Expand file tree Collapse file tree 8 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 94
94
95
95
- name : Upload logs
96
96
if : ${{ failure() }}
97
- uses : actions/upload-artifact@v3
97
+ uses : actions/upload-artifact@v4
98
98
with :
99
99
name : Server logs (Integration)
100
100
path : |
@@ -163,14 +163,14 @@ jobs:
163
163
164
164
- name : Upload videos of failures
165
165
if : ${{ failure() }}
166
- uses : actions/upload-artifact@v3
166
+ uses : actions/upload-artifact@v4
167
167
with :
168
168
name : E2E test video
169
169
path : ./nodecg/bundles/ystv-sports-graphics/cypress/videos
170
170
171
171
- name : Upload logs
172
172
if : ${{ failure() }}
173
- uses : actions/upload-artifact@v3
173
+ uses : actions/upload-artifact@v4
174
174
with :
175
175
name : Server logs (E2E)
176
176
path : |
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ export function CreateEventModal() {
111
111
independent
112
112
/>
113
113
< Field
114
- type = "number "
114
+ type = "text "
115
115
name = "rosesLiveID"
116
116
title = "RosesLive ID"
117
117
helper = "Don't touch this unless you know what you're doing."
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export function EditEventForm() {
79
79
independent
80
80
/>
81
81
< Field
82
- type = "number "
82
+ type = "text "
83
83
name = "rosesLiveID"
84
84
title = "RosesLive ID"
85
85
helper = "Don't touch this unless you know what you're doing."
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export const EventMetaSchema: Yup.SchemaOf<EventMeta> = Yup.object().shape({
32
32
. default ( ( ) => new Date ( ) . toISOString ( ) ) ,
33
33
name : Yup . string ( ) . required ( ) ,
34
34
notCovered : Yup . boolean ( ) . default ( false ) ,
35
- rosesLiveID : Yup . number ( ) . optional ( ) ,
35
+ rosesLiveID : Yup . string ( ) . optional ( ) ,
36
36
winner : Yup . mixed < "home" | "away" > ( ) . oneOf ( [ "home" , "away" ] ) . notRequired ( ) ,
37
37
worthPoints : Yup . number ( ) . integer ( ) . required ( ) . min ( 0 ) ,
38
38
homeTeam : TeamInfoSchema ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ while test $# -gt 0; do
21
21
done
22
22
23
23
# Start database
24
- docker- compose --project-directory " $SCRIPT_DIR /.." up -d couchbase redis
24
+ docker compose --project-directory " $SCRIPT_DIR /.." up -d couchbase redis
25
25
echo " Waiting for Couchbase Server to be ready..."
26
26
curl -u Administrator:password --retry 30 --retry-delay 0 --retry-all-errors -so /dev/null http://localhost:8091/pools/default/buckets/sports-scores
27
27
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export NODE_ENV=test
5
5
SCRIPT_DIR=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd)
6
6
7
7
# Start database
8
- docker- compose --project-directory " $SCRIPT_DIR /.." up -d couchbase redis
8
+ docker compose --project-directory " $SCRIPT_DIR /.." up -d couchbase redis
9
9
echo " Waiting for Couchbase Server to be ready..."
10
10
curl -u Administrator:password --retry 30 --retry-delay 0 --retry-all-errors -so /dev/null http://localhost:8091/pools/default/buckets/sports-scores
11
11
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export NODE_ENV=test
5
5
SCRIPT_DIR=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd)
6
6
7
7
# Start Redis
8
- docker- compose --project-directory " $SCRIPT_DIR /.." up -d redis
8
+ docker compose --project-directory " $SCRIPT_DIR /.." up -d redis
9
9
10
10
pushd " $SCRIPT_DIR /../scores-src" || exit 1
11
11
yarn test
Original file line number Diff line number Diff line change @@ -8064,9 +8064,9 @@ __metadata:
8064
8064
linkType: hard
8065
8065
8066
8066
"caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001317":
8067
- version: 1.0.30001442
8068
- resolution: "caniuse-lite@npm:1.0.30001442 "
8069
- checksum: c1bff65bd4f53da2d288e7f55be40706ee0119b983eae5a9dcc884046990476891630aef72d708f7989f8f1964200c44e4c37ea40deecaa2fb4a480df23e6317
8067
+ version: 1.0.30001715
8068
+ resolution: "caniuse-lite@npm:1.0.30001715 "
8069
+ checksum: c8371dceca0177518e43de537c74a01e64428ea65250d597c13472cf8277ffbc800c9a729ff0e7d271c8445ae90976ba64a170232b4498aee9552d993287a4c4
8070
8070
languageName: node
8071
8071
linkType: hard
8072
8072
You can’t perform that action at this time.
0 commit comments