From 9026fdc3d6a3ea29189af5ee5b5165d651a24c31 Mon Sep 17 00:00:00 2001 From: Arno Kaimbacher Date: Fri, 24 Jan 2025 17:32:32 +0100 Subject: [PATCH] ci workflow adaptions --- .gitea/workflows/ci.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 3a7925e..d0fc012 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -4,7 +4,13 @@ name: CI Pipeline run-name: ${{ github.actor }} is running CI pipeline # trigger build when pushing, or when creating a pull request -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: + branches: + - master jobs: # Label of the container job @@ -70,6 +76,7 @@ jobs: && echo "CACHE_VIEWS=false" >> .env.test && echo "APP_KEY=pfi5N2ACN4tMJ5d8d8BPHfh3FEuvleej" >> .env.test && echo "DRIVE_DISK=local" >> .env.test + && echo "OAI_LIST_SIZE=200" >> .env.test # finally run the tests # - run: npm test @@ -121,4 +128,4 @@ jobs: run: npm install - name: Run tests - run: npx japa --group "ReferenceValidation" + run: node ace test functional --groups "ReferenceValidation"