15 lines
212 B
YAML
15 lines
212 B
YAML
|
---
|
||
|
- name: Install python env
|
||
|
pacman:
|
||
|
name:
|
||
|
- python
|
||
|
- python-virtualenv
|
||
|
state: present
|
||
|
|
||
|
- name: Install yarn and node js
|
||
|
pacman:
|
||
|
name:
|
||
|
- nodejs
|
||
|
- yarn
|
||
|
state: present
|