Skip to content

Commit

Permalink
Merge pull request #9 from nulogy/PM-12767-nulogy-graphql-api-develop…
Browse files Browse the repository at this point in the history
…ment-process-is-broken

Add github workflow integrate.yml
  • Loading branch information
danielsilva authored Dec 4, 2023
2 parents e19d802 + a5efcea commit 5ceba4e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Integrate

on:
issue_comment:
types: [ created ]

jobs:
integrate:
name: Integrate
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/integrate')
runs-on: ubuntu-latest
steps:
- name: Checkout the latest code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: bundle exec appraisal install
- name: Run Rubocop
run: bundle exec appraisal rake rubocop
- name: Run Specs
run: bundle exec appraisal rake spec

0 comments on commit 5ceba4e

Please sign in to comment.