Skip to content

Commit

Permalink
update logic
Browse files Browse the repository at this point in the history
  • Loading branch information
circlecube committed Dec 14, 2023
1 parent 31bb998 commit 92c22f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/module-plugin-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,19 +152,19 @@ jobs:
- name: Setup Registry for Module
working-directory: ./vendor/${{ inputs.module-repo }}
if: ${{ steps.package.outputs.hasPackageJson == 'true' }}
if: ${{ steps.package.outputs.hasPackageJson }}
run: printf "\n//npm.pkg.github.com/:_authToken=${{ secrets.NEWFOLD_ACCESS_TOKEN }}" >> .npmrc

- name: NPM Install for Module if package.json exists
working-directory: ./vendor/${{ inputs.module-repo }}
if: ${{ steps.package.outputs.hasPackageJson == 'true' }}
if: ${{ steps.package.outputs.hasPackageJson }}
run: npm ci --legacy-peer-deps

- name: Build Module if build command exists
working-directory: ./vendor/${{ inputs.module-repo }}
if: |
${{ steps.package.outputs.hasPackageJson == 'true' }} &&
${{ steps.build.outputs.hasBuildCommand == 'true' }}
${{ steps.package.outputs.hasPackageJson }} &&
${{ steps.build.outputs.hasBuildCommand }}
run: npm run build

# step to sync js package files with build files
Expand Down

0 comments on commit 92c22f2

Please sign in to comment.