From 547757d5c0de8f439bec5e7b3b7106f52b5dcc65 Mon Sep 17 00:00:00 2001 From: avalkov Date: Thu, 30 Jun 2022 09:37:18 +0300 Subject: [PATCH] Fix CI --- .github/workflows/test.yml | 6 +++--- .npmrc | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 .npmrc diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c99cb29c82..bc48d1adfd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install modules - run: npm install --legacy-peer-deps + run: npm install - name: Run lint check run: npm run lint Unit-tests: @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install modules - run: npm ci --legacy-peer-deps + run: npm ci - name: Run tests run: npm test -- --coverage # - name: Upload coverage 📤 @@ -28,7 +28,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install modules - run: npm ci --legacy-peer-deps + run: npm ci - name: Run build check run: npm run build env: diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000000..e9ee3cb4d0 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +legacy-peer-deps=true \ No newline at end of file