Skip to content

Test on Approval

Test on Approval #9

name: Test on Approval
on:
pull_request_review:
types: [submitted]
jobs:
test:
# Only run if the review was approved
if: github.event.review.state == 'approved'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Run tests
run: yarn test