From a34addb891371829613af43911eea0cb436341a0 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Thu, 22 Apr 2021 21:30:16 +1000 Subject: [PATCH] Do not use npm ci for webchat --- .github/workflows/webchat-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/webchat-ci.yml b/.github/workflows/webchat-ci.yml index d0fec5a17f..467230eb22 100644 --- a/.github/workflows/webchat-ci.yml +++ b/.github/workflows/webchat-ci.yml @@ -33,10 +33,9 @@ jobs: - name: "[js-waku] build" run: npm run build - - name: install using npm ci - uses: bahmutov/npm-install@v1 - with: - working-directory: web-chat + - name: install using npm i + run: npm install + working-directory: web-chat - name: test run: npm run test