diff --git a/.github/workflows/github-pipelines.yml b/.github/workflows/github-pipelines.yml index 7e39a52a5..7a2ced1c4 100644 --- a/.github/workflows/github-pipelines.yml +++ b/.github/workflows/github-pipelines.yml @@ -1,4 +1,4 @@ -name: CI/CD Pipeline +name: App Test Pipeline on: push: @@ -13,16 +13,14 @@ jobs: - name: Checkout code uses: actions/checkout@v2 with: - fetch-depth: 5 # Fetch 5 commits worth of history + fetch-depth: 5 - - name: Install Git and Curl + - name: Install dependencies run: | - sudo apt-get update - sudo apt-get install -y git curl - git --version # Verify Git installation - curl --version # Verify curl installation + npm install - - name: Analyze Changes + - name: Run tests run: | - chmod +x analyze_changes.sh - ./analyze_changes.sh HEAD~1 HEAD + npm test # Replace with the appropriate test command for your app + + # Remove these steps entirely diff --git a/README.md b/README.md index 37c669442..d95fc6565 100644 --- a/README.md +++ b/README.md @@ -12,3 +12,4 @@ | 7 | Build shows up | Build commits show up | Build pipeline triggers | | | 8 | Status: Done | | Build completes | | +ignore