diff --git a/.github/workflows/merge-to-master.yml b/.github/workflows/merge-to-master.yml index 759ab13..b22b0a0 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 --legacy-peer-deps + - run: npm ci - 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 7fa2347..d326d04 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 --legacy-peer-deps + run: npm ci - name: Build run: npm run build - name: Run tests @@ -39,6 +39,6 @@ jobs: with: node-version: '16' - name: Install dependencies - run: npm ci --legacy-peer-deps + run: npm ci - name: Run ESLint run: npm run lint:check