add-pr-comment/.github/workflows/test.yml
2019-11-22 18:31:48 -05:00

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 }}