From b47463cb1f31953f7b5c11ac9a6ff372cd0955a1 Mon Sep 17 00:00:00 2001 From: Myrotvorets Date: Wed, 21 Apr 2021 23:04:02 +0300 Subject: [PATCH] Update workflows --- .github/workflows/test.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5f34bbd..1904da7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,8 +18,14 @@ jobs: with: node-version: '12' - - run: npm ci - - run: npm run all + - name: Update npm + run: npm i -g npm@latest + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run all test: runs-on: ubuntu-latest