Merge pull request #604 from serenity-js/dependabot/npm_and_yarn/sere… #1024
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: build | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 10.x, 12.x, 14.x ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm run lint | |
- run: npm test | |
automerge: | |
name: Auto-merge pull request | |
runs-on: ubuntu-latest | |
needs: [ verify ] | |
if: github.base_ref == 'master' && github.actor == 'dependabot[bot]' | |
steps: | |
- name: Merge | |
uses: actions/[email protected] | |
with: | |
script: | | |
github.pullRequests.createReview({ | |
owner: context.payload.repository.owner.login, | |
repo: context.payload.repository.name, | |
pull_number: context.payload.pull_request.number, | |
event: 'APPROVE' | |
}) | |
github.pullRequests.merge({ | |
owner: context.payload.repository.owner.login, | |
repo: context.payload.repository.name, | |
pull_number: context.payload.pull_request.number | |
}) | |
github-token: ${{github.token}} |