ansible-roles/nodejs/tasks/main.yml
Jérémy Lecour bee57a0b3c
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build is failing
change distribution release codename
Ansible 2.2 is too old to know about buster.
Let's use LSB for that.
2019-06-18 17:35:28 +02:00

41 lines
811 B
YAML

---
- name: APT https transport is enabled
apt:
name: apt-transport-https
state: present
tags:
- system
- packages
- name: NodeJS GPG key is installed
apt_key:
# url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key
data: "{{ lookup('file', 'nodesource.gpg.key') }}"
tags:
- system
- packages
- nodejs
- name: NodeJS sources list ({{ nodejs_apt_version }}) is available
apt_repository:
repo: "deb https://deb.nodesource.com/{{ nodejs_apt_version }} {{ ansible_lsb.codename }} main"
filename: nodesource
update_cache: yes
state: present
tags:
- system
- packages
- nodejs
- name: NodeJS is installed
apt:
name: nodejs
state: present
tags:
- packages
- nodejs
- include: yarn.yml
when: nodejs_install_yarn