feat: do not test user.login by default (#15)

* feat: do not test user.login by default

* ci: define user login in integration test

* ci: define dogfood test separately

* build: new dist build
This commit is contained in:
Michael Shick 2020-05-28 11:43:27 -04:00 committed by GitHub
parent 150a3ccfe9
commit f533dc4046
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 91 additions and 49 deletions

View file

@ -32,9 +32,30 @@ jobs:
run: |
npm test
dogfood:
name: Dogfood
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup node.js
uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Install dependencies
run: |
npm ci
- name: Build action
run: |
npm run build
- name: Add Comment
uses: ./
with:
message: |
**It works!**
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token-user-login: "github-actions[bot]"