From 5bf3330072c8b3dd3eabd7b4ab6e051fd043d047 Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Wed, 31 Jan 2024 11:28:36 -0500 Subject: [PATCH] Don't run integration test unless on a PR --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3f714c..14db7bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,11 @@ jobs: - run: npm test integration: + if: ${{ github.event_name == 'pull_request' }} runs-on: ubuntu-latest permissions: contents: read pull-requests: write steps: - - uses: actions/checkout@v4 - - uses: ./ + - uses: actions/checkout@v4 + - uses: ./