From d5a8302dfd34e6c6d118efb5607d563f2c983d12 Mon Sep 17 00:00:00 2001 From: Dharmen Shah Date: Wed, 14 Apr 2021 13:55:49 +0530 Subject: [PATCH] docs: separate steps for github actions (#41594) PR Close #41594 --- aio/content/guide/testing.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/testing.md b/aio/content/guide/testing.md index 6cd5326f05..2f637a7077 100644 --- a/aio/content/guide/testing.md +++ b/aio/content/guide/testing.md @@ -290,9 +290,12 @@ jobs: uses: actions/setup-node@v1 with: node-version: 14.x - - name: npm install and test + + - name: Setup + run: npm ci + + - name: Test run: | - npm ci npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI npm run e2e -- --protractor-config=e2e/protractor-ci.conf.js ```