Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshirecode authored Aug 5, 2024
1 parent 140bf58 commit 15a0586
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,22 +56,22 @@ jobs:
run: node common/scripts/install-run-rush.js test --to ${{ inputs.namespace }}/${{ inputs.package-name }}
- name: test:lcov ${{ inputs.package-name }}
if: inputs.lcov != ''
working-directory: ${{ inputs.package-path }}/${{ github.jobs[github.job].name }}
working-directory: ${{ inputs.package-path }}/${{ inputs.package-name }}
run: |
echo - ${{ inputs.package-path }} - ${{ github.jobs[github.job].name }} - ${{ github.job }}
echo - ${{ inputs.package-path }} - ${{ inputs.package-name }} - ${{ github.job }}
node $GITHUB_WORKSPACE/common/scripts/install-run-rushx.js coverage
- name: Coveralls GitHub Action
if: inputs.lcov != ''
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
file: ${{ github.workspace }}/${{ inputs.package-path }}/${{ github.jobs[github.job].name }}/coverage/lcov.info
file: ${{ github.workspace }}/${{ inputs.package-path }}/${{ inputs.package-name }}/coverage/lcov.info
format: lcov
flag-name: ${{ inputs.package-name }}
parallel: true
- name: build $${{ github.jobs[github.job].name }}
- name: build ${{ inputs.package-name }}
if: ${{ inputs.build }}
working-directory: ${{ inputs.package-path }}/${{ github.jobs[github.job].name }}
working-directory: ${{ inputs.package-path }}/${{ inputs.package-name }}
run: |
node $GITHUB_WORKSPACE/common/scripts/install-run-rush.js build --verbose --to ${{ inputs.namespace }}/${{ github.jobs[github.job].name }}
node $GITHUB_WORKSPACE/common/scripts/install-run-rush.js build --verbose --to ${{ inputs.namespace }}/${{ inputs.package-name }}
continue-on-error: true

0 comments on commit 15a0586

Please sign in to comment.