From c31ed787c7fe14894d803d67bde72778cb46e6d4 Mon Sep 17 00:00:00 2001 From: Noah Stride Date: Fri, 2 Feb 2024 11:03:41 +0000 Subject: [PATCH] Allow node20 --- internal/schema/schema.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/schema/schema.go b/internal/schema/schema.go index 9e80a12..0a3fa4f 100644 --- a/internal/schema/schema.go +++ b/internal/schema/schema.go @@ -156,7 +156,7 @@ func (r *Runs) UnmarshalYAML(value *yaml.Node) error { return nil - case "node12", "node16": + case "node12", "node16", "node20": var javascriptRun JavascriptRun if err := value.Decode(&javascriptRun); err != nil {