Skip to content

Commit

Permalink
Adjust github action, add deno environment test
Browse files Browse the repository at this point in the history
Signed-off-by: QIUZHILEI <[email protected]>
  • Loading branch information
QIUZHILEI committed Jul 26, 2023
1 parent 1376f3c commit c6e53b3
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ dagrs:
g:
name: "Task 7"
after: [ h ]
cmd: deno run ./tests/config/test.js
cmd: node ./tests/config/test.js
h:
name: "Task 8"
cmd: echo h
Expand Down
2 changes: 1 addition & 1 deletion examples/custom_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//! d,Task d,c e,echo d
//! e,Task e,h,echo e
//! f,Task f,g,python3 tests/config/test.py
//! g,Task g,h,deno run tests/config/test.js
//! g,Task g,h,node tests/config/test.js
//! h,Task h,,echo h
//! ```
Expand Down
2 changes: 1 addition & 1 deletion src/parser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
//! g:
//! name: "Task 7"
//! after: [ h ]
//! cmd: deno run ./tests/config/test.js
//! cmd: node ./tests/config/test.js
//! h:
//! name: "Task 8"
//! cmd: echo h
Expand Down
2 changes: 1 addition & 1 deletion src/task/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//! g:
//! name: "Task 7"
//! after: [ h ]
//! cmd: deno run ./tests/config/test.js
//! cmd: node ./tests/config/test.js
//! h:
//! name: "Task 8"
//! cmd: echo h
Expand Down
2 changes: 1 addition & 1 deletion tests/config/correct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dagrs:
g:
name: "Task 7"
after: [ h ]
cmd: deno run ./tests/config/test.js
cmd: node ./tests/config/test.js
h:
name: "Task 8"
cmd: echo h
2 changes: 1 addition & 1 deletion tests/config/custom_file_task.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ c,Task c,e g,echo c
d,Task d,c e,echo d
e,Task e,h,echo e
f,Task f,g,python3 tests/config/test.py
g,Task g,h,deno run tests/config/test.js
g,Task g,h,node tests/config/test.js
h,Task h,,echo h
2 changes: 1 addition & 1 deletion tests/config/no_start_with_dagrs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ f:
g:
name: "Task 7"
after: [ h ]
cmd: deno run ./test.js
cmd: node ./test.js
h:
name: "Task 8"
cmd: sh_script.sh
5 changes: 0 additions & 5 deletions tests/config/unsupported_type.yaml

This file was deleted.

0 comments on commit c6e53b3

Please sign in to comment.