Skip to content

Commit

Permalink
fix: fix using npm install in github worflows (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikitabut authored Nov 8, 2023
1 parent fb77380 commit 346148f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish_yarn_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
continue-on-error: ${{ inputs.bypass_checks }}
shell: bash
run: |
npm i
npm ci
yarn lint
code_checks:
Expand All @@ -39,7 +39,7 @@ jobs:
continue-on-error: ${{ inputs.bypass_checks }}
shell: bash
run: |
npm i
npm ci
yarn test --passWithNoTests
calculate_version:
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Install dependencies
shell: bash
run: |
npm i
npm ci
- uses: epam/ai-dial-ci/actions/[email protected]

release:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_yarn_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
continue-on-error: ${{ inputs.bypass_checks }}
shell: bash
run: |
npm i
npm ci
yarn lint
code_checks:
Expand All @@ -44,7 +44,7 @@ jobs:
continue-on-error: ${{ inputs.bypass_checks }}
shell: bash
run: |
npm i
npm ci
yarn test --passWithNoTests
docker_build:
Expand All @@ -67,5 +67,5 @@ jobs:
- name: Install dependencies
shell: bash
run: |
npm i
npm ci
- uses: epam/ai-dial-ci/actions/[email protected]

0 comments on commit 346148f

Please sign in to comment.