GitHub Action that determines if the code has changed without actually running a build.
jobs:
build:
steps:
- name: Check build
uses: open-turo/actions-gha/check-build@v1
with:
## example value for github-token provided below
github-token: ${{ secrets.GITHUB_TOKEN }}
Runs npm run prepare
and checks to see if there are uncommitted changes.
parameter | description | required | default |
---|---|---|---|
github-token | GitHub token that can create/delete comments. e.g. 'secrets.GITHUB_TOKEN' | true |
This action is a composite
action.