You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Github has a global that it supports called working-directory. This enables you to run an action in a specified working directory.
This action seems to ignore it which leads to thing like this:
coverage-nodejs:
defaults:
run:
working-directory: ./nodejssteps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn jest --coverage
- run: tail ./coverage/lcov.info# ^-- this outputs the actual last few lines of the lcov.info successfully
- uses: coverallsapp/github-action@masterwith:
github-token: ${{ secrets.GITHUB_TOKEN }}path-to-lcov: ./nodejs/coverage/lcov.info# ^-- ignoring working-directory herebase-path: ./nodejs# ^-- duplication of working-directory perhaps?
The text was updated successfully, but these errors were encountered:
Github has a global that it supports called
working-directory
. This enables you to run an action in a specified working directory.This action seems to ignore it which leads to thing like this:
The text was updated successfully, but these errors were encountered: