Add GitHub Action test for data analytics telemetry monitoring #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Analytics Telemetry Check | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-for-deprecated-v1-telemetry: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check for deprecated telemetry calls | |
shell: bash | |
run: | | |
echo "Checking for deprecated telemetry calls" | |
echo "logEvent('this should get flagged')" | |
if grep -rEn 'logEvent|logEvents|eventLogger\.log' .; then | |
echo "Found log events in the following files:" | |
grep -rEn 'logEvent|logEvents|eventLogger\.log' . | while read -r line ; do | |
file=$(echo "$line" | cut -d':' -f1) | |
match=$(echo "$line" | cut -d':' -f2-) | |
echo "File: $file, Match: $match" | |
done | |
exit 1 | |
else | |
echo "No log events found in modified files." | |
exit 0 | |
fi | |
# if grep -rqE 'logEvent|logEvents|eventLogger\.log' .; then | |
# echo "Found log events in modified files." | |
# exit 1 | |
# else | |
# echo "No log events found in modified files." | |
# exit 0 | |
# fi | |
# echo "Checking for deprecated telemetry calls" | |
# matches=$(grep -rn "logEvent\|telemetryService.log\|logEvents\|eventLogger\.log" --include="*.{js,ts,tsx,yml}") | |
# echo "logEvent('this should get flagged')" | |
# echo "matches: ${matches}" | |
# run: | | |
# MATCHES="$(grep -rn "logEvent\|telemetryService.log\|logEvents\|eventLogger\.log" --include="*.{js,ts,tsx}")" | |
# echo "matches: ${MATCHES}" | |
# if [ -n "$MATCHES" ]; then | |
# echo "Deprecated telemetry calls found" | |
# echo "::error::Deprecated telemetry calls found: ${MATCHES}" | |
# exit 1 | |
# fi | |
# check-telemetry-event: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Check for telemetry event with numbers | |
# shell: bash | |
# run: | | |
# MATCHES=$(grep -rn "telemetryRecorder\.recorderEvent\([^)]*\d+[^)]*\)" --include="*.{js,ts,tsx}") | |
# if [ -n "$MATCHES" ]; then | |
# echo "::error::Telemetry events with numbers found: $MATCHES" | |
# exit 1 | |
# fi |