17 lines
296 B
YAML
17 lines
296 B
YAML
---
|
|
|
|
- name: Add Yarn apt key
|
|
apt_key:
|
|
url: https://dl.yarnpkg.com/debian/pubkey.gpg
|
|
state: present
|
|
|
|
- name: Add Yarn Repository
|
|
apt_repository:
|
|
repo: deb https://dl.yarnpkg.com/debian/ stable main
|
|
state: present
|
|
|
|
- name: Install Yarn
|
|
apt:
|
|
name: yarn
|
|
state: present
|