Skip to content

feat: Google Analytics 4 importer #3117

feat: Google Analytics 4 importer

feat: Google Analytics 4 importer #3117

Workflow file for this run

name: Pull Request Validation Workflow
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, labeled, synchronize, ready_for_review]
jobs:
backend-checks:
name: Backend Checks
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Backend Dependencies
run: npm install --force
working-directory: backend
- name: Backend Lint Validation
run: npm run lint
working-directory: backend
- name: Backend Code Formatting Validation
run: npm run format:check
working-directory: backend
- name: Backend TypeScript Validation
run: npm run lint:tsc
working-directory: backend
- name: Backend Knip Validation
run: npm run knip
working-directory: backend
web-checks:
name: Web Checks
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Web Dependencies
run: npm install --force
working-directory: web
- name: Web Lint Validation
run: npm run lint
working-directory: web
- name: Web Code Formatting Validation
run: npm run format:check
working-directory: web
- name: Web TypeScript Validation
run: npm run typecheck
working-directory: web
- name: Web Knip Validation
run: npm run knip
working-directory: web
docs-checks:
name: Documentation Checks
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Documentation Dependencies
run: npm install --force
working-directory: docs
- name: Documentation Code Formatting Validation
run: npm run format:check
working-directory: docs
tracker-js-checks:
name: Tracker JS Checks
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: packages/tracker-js/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: packages/tracker-js
- name: Build
run: npm run build
working-directory: packages/tracker-js
- name: Run tests
run: npm test
working-directory: packages/tracker-js
tracker-node-checks:
name: Tracker Node Checks
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: packages/tracker-node/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: packages/tracker-node
- name: Build
run: npm run build
working-directory: packages/tracker-node
captcha-checks:
name: Captcha Checks
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: packages/captcha/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: packages/captcha
- name: Build
run: npm run build
working-directory: packages/captcha
captcha-validator-checks:
name: Captcha Validator Checks
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: packages/captcha-validator/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: packages/captcha-validator
- name: Build
run: npm run build
working-directory: packages/captcha-validator