Skip to content

chore: Update test.yml to handle changes in client/apps/ directory #4

chore: Update test.yml to handle changes in client/apps/ directory

chore: Update test.yml to handle changes in client/apps/ directory #4

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches:
- feat/portal-administration
jobs:
web-client-test:
name: test
runs-on: ubuntu-latest
steps:
- name: Check Changed Files
run: |
if git diff --no-index --name-only ${{ github.base_ref }}...${{ github.head_ref }} | grep -q "^client/apps/*"; then
echo "Files in client/apps/ have changed2"
else
echo "No files in client/apps/ have changed"
fi