Skip to content
Closed

Test #577

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set env var to fix PhantomJS
run: |
echo "OPENSSL_CONF=/tmp/openssl.cnf" >> "$GITHUB_ENV"

- name: Checkout 🛎️
uses: actions/checkout@v2

Expand All @@ -14,6 +18,10 @@ jobs:
with:
node-version: 12

- uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Test ✔️
run: |
npm ci
Expand Down
1 change: 1 addition & 0 deletions src/DGPopup/src/DGPopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ require('../../../vendors/baron');

// Monitor popups usage
// TODO: remove after successful research
//
if (typeof ga !== undefined) {
// eslint-disable-next-line no-undef
ga(DG.config.gaName + '.send', 'event', 'Popup', 'Use');
Expand Down
Loading