Skip to content

Commit

Permalink
Fix test of local action in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lerebear committed Sep 29, 2023
1 parent f9df2ea commit eca09a6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,11 @@ jobs:
id: test-action
uses: ./
with:
milliseconds: 1000
token: ${{ secrets.GITHUB_TOKEN }}

- name: Print Output
id: output
run: echo "${{ steps.test-action.outputs.time }}"
run: |
echo Score: "${{ steps.test-action.outputs.score }}"
echo Category: "${{ steps.test-action.outputs.score }}"

0 comments on commit eca09a6

Please sign in to comment.