From 296bf5a870fa4c0d6e6114968e357dbdc8828488 Mon Sep 17 00:00:00 2001 From: Ilya Hancharyk Date: Mon, 23 Sep 2024 13:31:17 +0200 Subject: [PATCH] Update workflow files --- .github/workflows/CI-pipeline.yml | 2 +- .github/workflows/publish.yml | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI-pipeline.yml b/.github/workflows/CI-pipeline.yml index 9ab57b8..025e7b9 100644 --- a/.github/workflows/CI-pipeline.yml +++ b/.github/workflows/CI-pipeline.yml @@ -41,7 +41,7 @@ jobs: with: node-version: ${{ matrix.node }} - - name: Install of node dependencies + - name: Install dependencies run: npm install - name: Build the source code diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d028ac9..32edc1b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,13 +27,11 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 - - name: Install of node dependencies + - name: Install dependencies run: npm install - name: Run lint run: npm run lint - - name: Run tests - run: npm test - - name: Check coverage + - name: Run tests and check coverage run: npm run test:coverage publish-to-npm-and-gpr: @@ -47,7 +45,7 @@ jobs: with: node-version: 20 registry-url: 'https://registry.npmjs.org' - - name: Install of node dependencies + - name: Install dependencies run: npm install - name: Publish to NPM run: |