Skip to content

feat: remove ReactGA and migrate to GA4 for tracking #1041

feat: remove ReactGA and migrate to GA4 for tracking

feat: remove ReactGA and migrate to GA4 for tracking #1041

Workflow file for this run

name: "Lint and Build"
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
cancel-in-progress: true
jobs:
lint-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: yarn
node-version: '18'
- run: yarn install --frozen-lockfile
- name: Run depcheck
run: |
yarn global add depcheck
yarn run depcheck
- run: yarn lint
- run: yarn build