From 8e8048e081c964833b1d3e216b5eaf4d29a71f5a Mon Sep 17 00:00:00 2001 From: sammychinedu2ky Date: Sat, 6 Mar 2021 10:53:54 +0100 Subject: [PATCH] fix: typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Awesome explanation 😋 . Just made a slight change to the verb Changed `run` to `runs` because a singular subject is used --- docs/action-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/action-types.md b/docs/action-types.md index 5631093148..776fecd571 100644 --- a/docs/action-types.md +++ b/docs/action-types.md @@ -17,7 +17,7 @@ Docker actions are currently limited to Linux only. ## Why would I choose a host action? -JavaScript actions decouple the unit of work from the environment and run directly on the host machine or VM. +JavaScript actions decouple the unit of work from the environment and runs directly on the host machine or VM. Consider a simple example of testing a node lib on node 8, 10 and running a custom action. Each job will setup a node version on the host and custom-action will run its unit of work on each environment (node8+ubuntu16, node8+windows-2019, etc.)