chore(deps): Bump posthog-js from 1.88.3 to 1.121.2 #490
Workflow file for this run
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
name: Build pull requests or commits | |
on: | |
push: | |
branches: | |
- main | |
- '**' | |
pull_request: | |
branches: | |
- main | |
- '**' | |
types: | |
- opened | |
- synchronize | |
- ready_for_review | |
jobs: | |
build: | |
name: Build code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Setup PNPM | |
uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: 'pnpm' | |
- name: Install pnpm dependencies | |
run: pnpm install | |
- name: Build code | |
run: pnpm run build | |
env: | |
GH_TOKEN: ${{ github.token }} |