mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 08:16:28 +00:00
14 lines
312 B
YAML
14 lines
312 B
YAML
---
|
|
- name: 'Add Node.js PPA'
|
|
tags: 'nodejs'
|
|
become: 'yes'
|
|
become_method: 'sudo'
|
|
shell: "curl --silent --location https://deb.nodesource.com/setup_{{ node_version }}.x | bash -"
|
|
|
|
- name: Install nodejs {{ node_version }}
|
|
apt:
|
|
name: nodejs
|
|
state: present
|
|
update_cache: yes
|
|
force: yes
|
|
... |