generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 19
Closed
Labels
bugSomething isn't working as expectedSomething isn't working as expected
Description
Describe the bug
When you declare a working-directory
for your action, all the paths should be relative to that directory, and not to the root of the project.
Expected behavior
jobs:
build:
defaults:
run:
working-directory: test/path
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check Code Coverage
uses: VeryGoodOpenSource/very_good_coverage@v1.1.1
with:
path: ./coverage/lcov.info
The absolute value of path
should be test/path/coverage/lcov.info
, and not just ./coverage/lcov.info
.
felangel and alestiago
Metadata
Metadata
Assignees
Labels
bugSomething isn't working as expectedSomething isn't working as expected