9 lines
215 B
Python
9 lines
215 B
Python
actions = {
|
|
'nodejs_install_yarn': {
|
|
'command': 'npm install -g yarn@latest',
|
|
'unless': 'test -e /usr/lib/node_modules/yarn',
|
|
'needs': {
|
|
'pkg_apt:nodejs',
|
|
},
|
|
},
|
|
}
|