GitHub Action that conditionally uses Node.js to test a GitHub Action
jobs:
test:
steps:
- name: Test
uses: open-turo/actions-gha/test@v1
## example value for github-token provided below
github-token: ${{ secrets.GITHUB_TOKEN }}
- By default, this action will perform actions/checkout as its first step.
parameter | description | required | default |
---|---|---|---|
checkout-repo | Perform checkout as first step of action | false |
true |
github-token | GitHub token passed to coveralls. Usually - 'secrets.GITHUB_TOKEN'. Coveralls uses this token to verify the posted coverage data on the consumer repo and create a new check based on the results. It is built into Github Actions and does not need to be manually specified in your secrets store. | true |
This action is a composite
action.