From d4a6bc0f72d1ed8aed49b74daababf622db36a7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Thu, 29 Jul 2021 09:34:52 +0200 Subject: [PATCH] MOBILE-3792 github: Update npm to 7 on github actions --- .github/workflows/testing.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 1534b363c..4f326a88b 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -12,9 +12,11 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '12.x' + node-version: '12' - name: Install npm packages - run: npm ci + run: | + npm install -g npm@7 + npm ci --no-audit - name: Check langindex run: | result=$(cat scripts/langindex.json | grep \"TBD\" | wc -l); test $result -eq 0