From 3c36d1d84f9c4b501605a71b1054f1442459aecc Mon Sep 17 00:00:00 2001 From: marcelo-schreiber Date: Wed, 1 May 2024 14:57:41 -0300 Subject: [PATCH] Update GitHub Actions workflow for testing backend --- .github/workflows/test-backend.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-backend.yml b/.github/workflows/test-backend.yml index e9efc2d..8a5e003 100644 --- a/.github/workflows/test-backend.yml +++ b/.github/workflows/test-backend.yml @@ -1,15 +1,17 @@ -name: Testing Backend 🧪 -run-name: Test Backend -on: [push] +name: Backend setup and test 🧪 +run-name: Backend setup and test +on: [push, pull_request] jobs: Explore-GitHub-Actions: runs-on: ubuntu-latest steps: - name: Checkout Repository uses: actions/checkout@v2 - - run: docker pull python:3.9-slim - name: Install dependencies run: npm install + - name: Pull images + run: npm run pull-images - name: Run tests run: npm test + \ No newline at end of file