From 85a61a79bc56f20ff53d43eeb07bd82f796db493 Mon Sep 17 00:00:00 2001 From: Kelvin Jayanoris Date: Thu, 4 Oct 2018 14:30:06 +0300 Subject: [PATCH 1/2] Refactor tasks that us squash_actions --- tasks/install.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks/install.yml b/tasks/install.yml index 3c2f0fa..f357a42 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -32,11 +32,10 @@ - name: Install system-wide dependencies apt: - pkg: "{{ item }}" + name: "{{ system_wide_dependencies }}" state: latest update_cache: yes cache_valid_time: 600 - with_items: "{{ system_wide_dependencies }}" - name: Ensure required directories are present file: From dafa1473e727a340b9c91e32e5ed2e60ed9bbcdf Mon Sep 17 00:00:00 2001 From: Kelvin Jayanoris Date: Thu, 4 Oct 2018 14:38:58 +0300 Subject: [PATCH 2/2] Add status badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c13e81d..6f5031e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # ansible-react +[![Build Status](http://cicd.onalabs.org/api/badges/onaio/ansible-react/status.svg)](http://cicd.onalabs.org/onaio/ansible-react) + Install and configure react apps. 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).