mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
20 lines
363 B
Ruby
20 lines
363 B
Ruby
module Gitlab
|
|
module Ci
|
|
class Config
|
|
module Node
|
|
class BeforeScript < Entry
|
|
def keys
|
|
{}
|
|
end
|
|
|
|
def validate!
|
|
unless validate_array_of_strings(@value)
|
|
@errors << 'before_script should be an array of strings'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|