Skip to content

feat:add matomo

feat:add matomo #477

Workflow file for this run

name: Playwright Tests
env:
PUBLIC_API_URL: "https://mj-cms.jcloud-ver-jpe.ik-server.com"
SENDINBLUE_API_KEY: "<change-me>" # Keep this variable empty.
PUBLIC_MATOMO_CDN_URL: "" # Keep this variable empty.
PUBLIC_MATOMO_URL: "" # Keep this variable empty.
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.17
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30