summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/node/global.rb
blob: cfa506c28b7fa83ec45ee5b6997e19992ee19ac9 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Gitlab
  module Ci
    class Config
      module Node
        class Global < Entry
          add_node :before_script, BeforeScript
        end
      end
    end
  end
end