Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Dec 28, 2020
1 parent 6a1edb8 commit e95b2b3
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
@@ -1,6 +1,6 @@
name: tests

on: [push]
on: [push, pull_request]

jobs:
test:
Expand All @@ -21,5 +21,12 @@ jobs:
run: |
npm i
npm test
env:
CI: true
automerge:
needs: test
runs-on: ubuntu-latest
steps:
- uses: fastify/github-action-merge-dependabot@v1.1.1
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' && contains(github.head_ref, 'dependabot/github_actions') }}
with:
github-token: ${{secrets.github_token}}

0 comments on commit e95b2b3

Please sign in to comment.