I want to use a custom shell to run all my command, as that environment will be isolated and controlled: nix develop --command bash -c "<impure commands you want to run>"
As a consumer of Orbs’s command, how can I execute them in shell script? Right now I have a config like this:
jobs:
test:
machine: true
resource_class: medium
steps:
- checkout
- node/install:
node-version: "16.15.1"
- node/install-packages
How can I execute node/install-packages
in that generated shell?