WindowsのRunnerでコマンド(shell="cmd")no設定でcmd が見つからないエラーになる

皆さん、こんにちは、WindowsでGitLab Raunnerを設定するのが初めてで、RunnerでWindows上になるバッチや、コマンドを実行させるジョブを準備しています。

Runner実行時に以下のエラーが出ます。改善するべき点を教えていただけると幸いです。
エラーメッセージ:
「Running with gitlab-runner 17.2.1 (9882d9c7)

Preparing the “shell” executor
ERROR: Preparation failed: shell cmd not found 」

.gitlab-ci.yml の実行したいサンプル例は、以下の通りです。
「stages:

  • test

test_job:
stage: test
script:
- echo “Hello, World!” > hello.bat
- hello.bat
tags:
- windows

こちらにについても、アドバイスがあればご教示ください。
宜しくお願いします。