From edd8d5c5162ef133d89d6528d8bf4d2626851ba1 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Sat, 4 Dec 2021 00:51:00 +0200 Subject: [PATCH] ci: add check that 'package-lock.json' doesn't have conflicts --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63c83055f4..2c4edd37b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,9 @@ jobs: - name: Check that package-lock.json is in sync with package.json run: git diff --exit-code package-lock.json + - name: Check that package-lock.json doesn't have conflicts + run: npm ls --package-lock-only --depth 999 + integrationTests: name: Run integration tests runs-on: ubuntu-latest