This repository has been archived by the owner on Feb 21, 2025. It is now read-only.
fix(deps): update dependency posthog-js to ^1.222.0 #4652
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This ensures our end to end tests run for production builds | |
name: E2E Tests | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches: | |
- main | |
jobs: | |
approve: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: package.json | |
- uses: pnpm/action-setup@v4 | |
with: | |
run_install: true | |
- name: Run E2E Tests | |
run: pnpm run test:ci |