From af5be8b46c807cdb0ee6c1c43144de351dea5f80 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 13 Jan 2026 02:16:27 +0000 Subject: [PATCH] fix: use YAML literal block scalar for run command with special characters The `...` in the run command was causing YAML syntax errors as it's interpreted as a document end marker. Using a literal block scalar (`|`) prevents this issue. Also fixed typo `..s` to `...`. --- .github/workflows/validate.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 147d4e7..6952467 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -60,7 +60,8 @@ jobs: - name: ๐Ÿงช Run tests id: run_tests - run: echo "TODO: fix this... node ./epicshop/test.js ..s" + run: | + echo "TODO: fix this... node ./epicshop/test.js ..." deploy: name: ๐Ÿš€ Deploy