File tree Expand file tree Collapse file tree 4 files changed +21
-1
lines changed
Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1+ name : stories
2+ jobs :
3+ node :
4+ name : stories-node
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@v4
8+ - uses : oven-sh/setup-bun@v2
9+ - run : bun install --global @openfn/cli
10+ - run : bun stories:cli
Original file line number Diff line number Diff line change 1+ name : test
2+ jobs :
3+ test :
4+ name : test
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@v4
8+ - uses : oven-sh/setup-bun@v2
9+ - run : bun test:unit
Original file line number Diff line number Diff line change 55 "private" : true ,
66 "scripts" : {
77 "clean" : " rimraf tmp" ,
8+ "test:unit" : " bun test ./test" ,
89 "stories" : " bun test stories --preload ./src/preload.ts" ,
910 "stories:cli" : " OPENFN_RUNNER=cli bun stories" ,
1011 "stories:lightning" : " OPENFN_RUNNER=lighting bun stories"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import initTest from "../../src/test";
44
55const test = initTest ( import . meta. filename ) ;
66
7- test ( "should execute a workflow" , ( ctx ) => {
7+ test . skip ( "should execute a workflow" , ( ctx ) => {
88 ctx . createFile ( ctx . name + ".json" , "hello world" ) ;
99 // generate a project
1010 // write it to disk (where? how?)
You can’t perform that action at this time.
0 commit comments