bump go deps and node version #140
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: Checkmate | |
on: | |
pull_request: | |
types: | |
# For PR description inspection only | |
- edited | |
- opened | |
- reopened | |
# For changeset automatic checklist. Also requires GITHUB_TOKEN to be set | |
- synchronize | |
issue_comment: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pr-comment-master: | |
env: | |
CHECKMATE_DEBUG: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: roryq/checkmate@master | |
pr-comment-golang: | |
env: | |
CHECKMATE_DEBUG: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: stable | |
- run: go run main.go | |
env: | |
# INPUT_PATHS: | | |
# "**/*.go": | |
# - <!--checkmate select=1--> | |
# - Dummy Test Item | |
# - Dummy Test Item 2 | |
# README.md: | |
# - Test 1 | |
# - Test 2 | |
INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |