-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: analytics-browser-gtm script check (#48)
- Loading branch information
1 parent
62dabd9
commit 79db3fa
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: analytics-browser-gtm Script Check | ||
|
||
on: | ||
push: | ||
branches: | ||
- v3.x | ||
pull_request: | ||
types: [opened, synchronize] | ||
branches: | ||
- v3.x | ||
|
||
jobs: | ||
script-scan: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out git repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Scan for analytics-browser-gtm script | ||
run: | | ||
if grep -Po 'https://cdn\.amplitude\.com/libs/analytics-browser-gtm-\d+\.\d+\.\d+-min\.js\.gz' src/amplitude-wrapper.js; then | ||
echo "Amplitude analytics-browser-gtm found in file" | ||
else | ||
echo "No specific Amplitude URL found in file" | ||
exit 1 # Missing Amplitude analytics-browser-gtm script | ||
exit 1 | ||
fi |