22 lines
283 B
YAML
22 lines
283 B
YAML
---
|
|
- name: Install dev packages
|
|
apt:
|
|
name:
|
|
- git
|
|
- nodejs
|
|
state: present
|
|
|
|
- name: Install build tools
|
|
apt:
|
|
name:
|
|
- build-essential
|
|
- python3
|
|
- python3-pip
|
|
state: present
|
|
|
|
- name: Install npm
|
|
apt:
|
|
name: npm
|
|
state: present
|
|
|