runner
Here are 308 public repositories matching this topic...
Some tasks are self-explanatory if you looked at their script and need no description. I also think knowing what script the task actually runs can be helpful context if only reading from the help dialog and not the maidfile itself.
For instance, I have a clean task that just runs rm -rf build/. If the help dialog outputted this, I wouldn't need to add a description, but since it doesn't I
-
Updated
Jan 29, 2019 - JavaScript
- VS Code Version: 1.38.1
- OS Version: Windows 10 v 1903 (build 18362.356)
- Code Runner Version: 0.9.14
- Nim version: 1.0.0 (and Nimble v0.11.0)
Describe the bug
I saw this while working throug
-
Updated
Mar 27, 2020 - TypeScript
From twitter:
https://twitter.com/bbrannic/status/1077892960426041344
The following repo has a good reporting solution which expects the test-run results in JSON format
https://github.com/damianszczepanik/cucumber-reporting
Zerocode already produces test-run results in JSON format.
Some subset of data from this is used for CSV reporting and some for HTML reporting.
Currently it uses _e
-
Updated
Mar 13, 2020 - JavaScript
- Constant vs Variable scopes inlining behavior
- Escaping with
%%var%%` - Special variables like
%%NakeScriptDirectory%%` - Automatic quoting in commands
-
Updated
Apr 27, 2019
-
Updated
May 9, 2020 - TypeScript
-
Updated
Jul 2, 2019 - PHP
-
Updated
Sep 22, 2019 - PHP
-
Updated
Jan 18, 2019 - Swift
-
Updated
Oct 25, 2019 - C#
-
Updated
May 25, 2020 - Python
-
Updated
Feb 26, 2020 - JavaScript
-
Updated
Aug 28, 2019 - Python
-
Updated
Jun 9, 2020 - Go
If there are two activities on the same day, the formatting breaks.
Expected behavior:
- Only show one activity if there are two on the same day
- Default to planned activity if there is one
- Otherwise, use the most recent activity by
start_at
Improve this page
Add a description, image, and links to the runner topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the runner topic, visit your repo's landing page and select "manage topics."

On my team, we've been implementing error handling in agenda jobs in one of two ways:
job.fail(err); job.save(), returnAfter looking at the job processing code for the
runmethod, I confirmed the two approaches were equivalent.While