From dec2757f88b843da25faf219cb03491d3ef8cd4d Mon Sep 17 00:00:00 2001 From: adilallo <39313955+adilallo@users.noreply.github.com> Date: Fri, 29 Aug 2025 08:12:26 -0600 Subject: [PATCH] fix: update workflow to run on current branch and use macos-latest runner --- .gitea/workflows/ci.yaml | 16 ++++++++-------- config.yaml | 1 - 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 49f1377..24e3503 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -3,14 +3,14 @@ run-name: ${{ gitea.actor }} triggered CI pipeline on: push: - branches: [main, develop] + branches: [main, develop, adilallo/enhancement/TestingFramework] pull_request: branches: [main, develop] jobs: # Unit and Integration Tests test: - runs-on: ubuntu-latest + runs-on: macos-latest strategy: matrix: node-version: [18, 20] @@ -41,7 +41,7 @@ jobs: # E2E Tests e2e: - runs-on: ubuntu-latest + runs-on: macos-latest strategy: matrix: browser: [chromium, firefox, webkit] @@ -90,7 +90,7 @@ jobs: # Visual Regression Tests visual-regression: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - name: Checkout code @@ -136,7 +136,7 @@ jobs: # Performance Tests performance: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - name: Checkout code @@ -169,7 +169,7 @@ jobs: # Storybook Tests storybook: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - name: Checkout code @@ -194,7 +194,7 @@ jobs: # Lint and Format lint: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - name: Checkout code @@ -217,7 +217,7 @@ jobs: # Build Verification build: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - name: Checkout code diff --git a/config.yaml b/config.yaml index dadce6a..23f70bb 100644 --- a/config.yaml +++ b/config.yaml @@ -9,7 +9,6 @@ runner: fetch_timeout: 5s fetch_interval: 2s labels: - - "ubuntu-latest:docker://mcr.microsoft.com/playwright:v1.54.2-jammy" - "macos-latest:host" - "self-hosted:host"