mirror of
https://github.com/mshick/add-pr-comment.git
synced 2025-12-31 14:20:32 +11:00
16 lines
272 B
YAML
16 lines
272 B
YAML
name: "test-local"
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: npm ci
|
|
- run: npm test
|
|
- uses: ./
|
|
with:
|
|
msg: Hello!
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|