Files
ansible-automations/roles/nvm/tasks/check_installed.yml
Noah Knegt ecaa1b6249
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Fix the nvm steps
Signed-off-by: Noah Knegt <git@noahknegt.com>
2023-04-06 10:41:10 +02:00

15 lines
628 B
YAML

# ===================================================================================================
# ? ABOUT
# @author : Noah Knegt
# @email : personal@noahknegt.com
# @repo : https://git.noahknegt.com/noah.knegt/ansible-automations
# @createdOn : 06-04-2023
# @description : This will check if nvm is installed as the latest version.
# ===================================================================================================
---
- name: Check nvm version
shell: nvm --version
register: nvm_version
ignore_errors: true