From 1442aa2b577fdcd43bf7192863d67635b83fc15a Mon Sep 17 00:00:00 2001 From: Naor Peled Date: Tue, 14 Nov 2023 19:15:10 +0200 Subject: [PATCH] . --- .github/workflows/codeql.yml | 2 ++ .github/workflows/merge-to-master.yml | 2 +- .github/workflows/pull-request.yml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index de8e23a..00190a7 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -36,6 +36,8 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v4 + - run: npm ci --legacy-peer-deps + - run: npm run build - name: Perform CodeQL Analysis diff --git a/.github/workflows/merge-to-master.yml b/.github/workflows/merge-to-master.yml index bb9b630..9de6a2a 100644 --- a/.github/workflows/merge-to-master.yml +++ b/.github/workflows/merge-to-master.yml @@ -28,7 +28,7 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - run: npm ci + - run: npm ci --legacy-peer-deps - run: npm run build - run: nyc npm test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js env: diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 83f765f..7efe347 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -20,7 +20,7 @@ jobs: with: node-version: ${{ matrix.node }} - name: Install dependencies - run: npm ci + run: npm ci --legacy-peer-deps - name: Build run: npm run build - name: Run tests