Files
ansible_role_package/tasks/npm.yml
2025-03-12 15:11:48 -06:00

9 lines
167 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Install npm {{ pkg }}
become: true
community.general.npm:
global: true
name: "{{ pkg }}"
state: present