You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a number of operations that I would like to execute within the container. There are node tests, linting, type checking, building, python tests and linting and type checking... that's arguably a lot of stuff. Yet, currently everything goes into a single step in GitHub actions - the container build step.
Rather than define everything in the runCmd property, I would like to be able to define basic steps as
steps:
- name: Run node tests
run: pnpm run test
- name: Linting
run: pnpm run lint
...
And that would end up in separate steps within GitHub actions.
The text was updated successfully, but these errors were encountered:
I have a number of operations that I would like to execute within the container. There are node tests, linting, type checking, building, python tests and linting and type checking... that's arguably a lot of stuff. Yet, currently everything goes into a single step in GitHub actions - the container build step.
Rather than define everything in the
runCmd
property, I would like to be able to define basic steps asAnd that would end up in separate steps within GitHub actions.
The text was updated successfully, but these errors were encountered: