Skip to content

Commit

Permalink
chore(Taskfile): add console alias for playground since it is too int…
Browse files Browse the repository at this point in the history
…uitive
  • Loading branch information
marian13 committed Apr 26, 2023
1 parent 516a2ba commit 180a941
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,49 @@ tasks:
cmds:
- task: test

##
# NOTE: `task console` is also aliased as `task playground`.
#
console:
cmds:
- bundle exec rake playground
interactive: true

console:all:
cmds:
- bundle exec appraisal all rake playground
interactive: true

console:dry:
cmds:
- bundle exec appraisal dry rake playground
interactive: true

console:rails_5.2:
cmds:
- bundle exec appraisal rails_5.2 rake playground
interactive: true

console:rails_6.0:
cmds:
- bundle exec appraisal rails_6.0 rake playground
interactive: true

console:rails_6.1:
cmds:
- bundle exec appraisal rails_6.1 rake playground
interactive: true

console:rails_7.0:
cmds:
- bundle exec appraisal rails_7.0 rake playground
interactive: true

console:standard:
cmds:
- bundle exec rake playground
interactive: true

coverage:lcov:merge:
cmds:
- npx --yes lcov-result-merger 'coverage/**/lcov.info' coverage/lcov.info
Expand Down

0 comments on commit 180a941

Please sign in to comment.