You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
433 B

- hosts: all
become: yes
tasks:
- name: add the Yarn package repository key
apt_key:
url: https://dl.yarnpkg.com/debian/pubkey.gpg
state: present
- name: add the Yarn package repository
apt_repository:
repo: deb https://dl.yarnpkg.com/debian/ stable main
state: present
filename: yarn
- name: install Yarn
apt:
name: yarn
update_cache: yes