[Q & A] How can I install different versions for a specific tool in the same project? #3159
-
QuestionHow can I install and use different versions for a specific tool version in the same project? For example, workflow-a requires node@20 but other workflow can use node@22. Background of the questionSometimes CI workflow requires different tool versions such as node. - name: nodejs/[email protected] # for specific ci
command: node20
- name: nodejs/[email protected] # default There is a feature for aliasing for package name but it seems not a command. Example CodeNo response NoteNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
How about changing aqua.yaml? AQUA_CONFIG=foo/aqua.yaml node # for specific ci
node # default |
Beta Was this translation helpful? Give feedback.
How about changing aqua.yaml?