From 230f450bc2f4c064b06b35a714df2412ffecfac5 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Sun, 20 Apr 2025 08:31:25 +0300 Subject: [PATCH] tests: add node and python in TestStep_ShellCommand --- act/model/workflow_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/act/model/workflow_test.go b/act/model/workflow_test.go index d2539063..ffc3ca2c 100644 --- a/act/model/workflow_test.go +++ b/act/model/workflow_test.go @@ -510,6 +510,8 @@ func TestStep_ShellCommand(t *testing.T) { {"pwsh -v '. {0}'", "pwsh -v '. {0}'"}, {"pwsh", "pwsh -command . '{0}'"}, {"powershell", "powershell -command . '{0}'"}, + {"node", "node {0}"}, + {"python", "python {0}"}, } for _, tt := range tests { t.Run(tt.shell, func(t *testing.T) {