MOBILE-3792 github: Update npm to 7 on github actions

main
Pau Ferrer Ocaña 2021-07-29 09:34:52 +02:00
parent bfb949c959
commit d4a6bc0f72
1 changed files with 4 additions and 2 deletions

View File

@ -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