Feature: infer parent/child relationships between games #123
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Commenter | |
on: | |
pull_request: | |
types: | |
# - edited # PR's base branch was changed | |
- opened | |
- reopened | |
- synchronize # PR's branch was edited (i.e. new commits) | |
paths: | |
- '*' | |
- 'src/**' | |
- 'test/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
npm-exec-test: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
os: [ ubuntu, macos, windows ] | |
steps: | |
- uses: actions/setup-node@v3 | |
- run: npm exec --yes -- "github:${{ github.repository }}#${{ github.head_ref }}" --help | |
npm-exec: | |
needs: | |
- npm-exec-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: thollander/actions-comment-pull-request@v2 | |
with: | |
message: | | |
## :test_tube: Branch Testing | |
This pull request can be tested locally with the following command: | |
```shell | |
npm exec --yes -- "github:${{ github.repository }}#${{ github.head_ref }}" [commands..] [options] | |
``` | |
comment_tag: npm-exec |