From 248592843b6e845d744cbd73dfb3610ac6902520 Mon Sep 17 00:00:00 2001 From: Igor Date: Mon, 26 Oct 2020 12:29:49 +0300 Subject: [PATCH] feat(*): change 'npm i' on 'npm ci' (#1227) Co-authored-by: Igor Belyaev --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cd4a499daa..bbe9d3a7bc 100755 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,7 +27,7 @@ jobs: run: | npm cache clean --force rm -rf ~/.npm node_modules - npm i + npm ci - name: Lint's checks if: ${{ matrix.test-scope == 'lint' }}