mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
23 lines
843 B
C#
23 lines
843 B
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace GitHub.Runner.Common.Util
|
|
{
|
|
public static class NodeUtil
|
|
{
|
|
private const string _defaultNodeVersion = "node16";
|
|
public static readonly ReadOnlyCollection<string> BuiltInNodeVersions = new(new[] { "node16", "node20" });
|
|
public static string GetInternalNodeVersion()
|
|
{
|
|
var forcedInternalNodeVersion = Environment.GetEnvironmentVariable(Constants.Variables.Agent.ForcedInternalNodeVersion);
|
|
var isForcedInternalNodeVersion = !string.IsNullOrEmpty(forcedInternalNodeVersion) && BuiltInNodeVersions.Contains(forcedInternalNodeVersion);
|
|
|
|
if (isForcedInternalNodeVersion)
|
|
{
|
|
return forcedInternalNodeVersion;
|
|
}
|
|
return _defaultNodeVersion;
|
|
}
|
|
}
|
|
}
|