Skip to content

Commit a65261a

Browse files
authored
Merge pull request #2 from onaio/squash-actions
Refactor tasks that use squash_actions
2 parents 750f3a9 + dafa147 commit a65261a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# ansible-react
22

3+
[![Build Status](http://cicd.onalabs.org/api/badges/onaio/ansible-react/status.svg)](http://cicd.onalabs.org/onaio/ansible-react)
4+
35
Install and configure react apps.
46

57
This is a simple and straight-to-the-point role to install react apps. it is tested against apps that were created using [create react app](https://github.com/facebook/create-react-app).

tasks/install.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,10 @@
3232

3333
- name: Install system-wide dependencies
3434
apt:
35-
pkg: "{{ item }}"
35+
name: "{{ system_wide_dependencies }}"
3636
state: latest
3737
update_cache: yes
3838
cache_valid_time: 600
39-
with_items: "{{ system_wide_dependencies }}"
4039

4140
- name: Ensure required directories are present
4241
file:

0 commit comments

Comments
 (0)