Skip to content

fix: Build before bumping #422

fix: Build before bumping

fix: Build before bumping #422

Workflow file for this run

name: ci
on:
push:
branches: [main, v3]
pull_request:
branches: [main, v3]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: "package.json"
- uses: pnpm/action-setup@v4
- run: pnpm install
- run: cd packages/tracker && pnpm playwright install --with-deps
- run: pnpm turbo build lint typecheck test-ci --concurrency=1
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}