eibens / edcb

A build tool and task runner for Deno.
MIT License
0 stars 0 forks source link

Eliminate `check` action #40

Closed eibens closed 2 years ago

eibens commented 2 years ago

Like serve, the implementation of the check task can just reside inside the task itself. The idea behind separating everything out as stand-alone actions was that we can easily unit test them. But the check basically just calls other actions and the logic is not that complicated anyways.

eibens commented 2 years ago

Further, for the implementation of the --codecov flag for #36 some changes are needed that will be simpler when there is not separate check action.