Skip to content

feat(mixpanel): add persistence name setting #998

feat(mixpanel): add persistence name setting

feat(mixpanel): add persistence name setting #998

Workflow file for this run

name: Tests
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.0
with:
fetch-depth: 1
- name: Setup Node
uses: actions/setup-node@v3.6.0
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Unit Tests
run: npm run test:ci
- name: Set up Python
run: scripts/setup-python.sh
- name: Get changed files
id: changed_files
uses: tj-actions/changed-files@v36
with:
sha: ${{ github.event.pull_request.head.sha }}
- name: Run schema validation for changed files
run: |
chmod +x scripts/run-schema-validation.sh
scripts/run-schema-validation.sh "${{ steps.changed_files.outputs.all_changed_files }}"