npm check test on master

This commit is contained in:
Marco Carrozzo
2023-01-16 11:18:21 +01:00
parent c48d86c251
commit 07796f8a4d
@@ -43,9 +43,9 @@ runs:
- name: set TAG_NPM to latest - name: set TAG_NPM to latest
shell: bash shell: bash
if: ${{ inputs.branch_name }} == master if: "${{ inputs.branch_name == 'master' }}"
run: echo "TAG_NPM=latest" >> $GITHUB_ENV run: echo "TAG_NPM=latest" >> $GITHUB_ENV
- name: set TAG_NPM to alpha - name: set TAG_NPM to alpha
shell: bash shell: bash
if: ${{ inputs.branch_name }} == develop if: "${{ inputs.branch_name == 'develop' }}"
run: echo "TAG_NPM=alpha" >> $GITHUB_ENV run: echo "TAG_NPM=alpha" >> $GITHUB_ENV