feat: conversations widget #4244
This file contains hidden or 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
| name: Minimum TypeScript version check | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| unit: | |
| name: Check minimum TS version | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| node-version: [20, 22, 24] | |
| typescript-version: ["4.7.2", "5.5.4", "latest"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| with: | |
| node_version: ${{ matrix.node-version }} | |
| build: true | |
| # once its built we can see if we can use it on the forced version | |
| - name: Override TypeScript version | |
| run: pnpm add typescript@${{ matrix.typescript-version }} --save-dev | |
| working-directory: packages/browser | |
| - name: Test TypeScript Import | |
| run: | | |
| rm test.ts || true | |
| echo "import { posthog } from './dist/module'; console.log(posthog);" > test.ts | |
| pnpm exec tsc test.ts --strict --target es2017 --module commonjs --moduleResolution node --noEmit --skipLibCheck | |
| working-directory: packages/browser |