From 5923cef6373eba1ee3ab8544c0982eda559442c8 Mon Sep 17 00:00:00 2001 From: Alena Sviridenko Date: Wed, 3 Apr 2024 12:39:18 +0200 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d9a96ad..526df84 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,5 +14,7 @@ jobs: - name: create gulpfile run: | cd my-project - cat "function defaultTask(cb) { console.log("hello"); cb(); } exports.default = defaultTask" > gulpfile.js + cat "function defaultTask(cb) { setTimeout(() => { console.log('Delayed for 10 second.'); }, '10000'); cb(); } exports.default = defaultTask" > gulpfile.js yarn gulp + echo something + exit 0