Skip to content

Commit

Permalink
SRE-1339 - debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Sivli-Embir committed Dec 6, 2023
1 parent 39b024b commit 819e1f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup_env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ runs:
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: npm_install_prod_deps
if: ${{ fromJSON(inputs.use_dev) && fromJSON(inputs.npm_install) }}
if: ${{ fromJSON(inputs.use_dev) && fromJSON(inputs.npm-install) }}
run: npm ci --ignore-scripts
shell: bash
env:
NODE_AUTH_TOKEN: ${{ env.NODE_AUTH_TOKEN || inputs.NODE_AUTH_TOKEN }}
- name: npm_install_prod_and_dev_deps
if: ${{ !fromJSON(inputs.use_dev) && fromJSON(inputs.npm_install) }}
if: ${{ !fromJSON(inputs.use_dev) && fromJSON(inputs.npm-install) }}
run: npm ci --ignore-scripts --omit=dev
shell: bash
env:
NODE_AUTH_TOKEN: ${{ env.NODE_AUTH_TOKEN || inputs.NODE_AUTH_TOKEN }}
- name: npm_rebuild
if: ${{ fromJSON(inputs.npm_install) }}
if: ${{ fromJSON(inputs.npm-install) }}
run: npm rebuild && npm run prepare --if-present
shell: bash
env:
Expand Down

0 comments on commit 819e1f5

Please sign in to comment.