Skip to content

feat: add analytics tracking for repo scan and wizard interactions #38

feat: add analytics tracking for repo scan and wizard interactions

feat: add analytics tracking for repo scan and wizard interactions #38

Workflow file for this run

name: CI Tests
on:
pull_request:
branches:
- '**'
permissions:
contents: read
jobs:
unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test:run
e2e-tests:
name: Run Playwright e2e tests
runs-on: ubuntu-latest
needs: unit-tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install --with-deps
- name: Run e2e tests
run: npm run test:e2e
env:
CI: true