diff --git a/.github/workflows/fe-pull-request.yml b/.github/workflows/fe-pull-request.yml index cc482007df..f5c324d6ae 100644 --- a/.github/workflows/fe-pull-request.yml +++ b/.github/workflows/fe-pull-request.yml @@ -17,19 +17,13 @@ jobs: version: latest - name: Run Biome run: biome check . --reporter=github - working-directory: ./frontend tsc: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: '20' - cache: 'pnpm' - - name: Install Dependencies - run: pnpm install - working-directory: ./frontend + - uses: pnpm/action-setup@v4 + - run: pnpm install + - run: pnpm turbo build:engine - name: Run TypeScript Compiler run: pnpm ts-check working-directory: ./frontend \ No newline at end of file diff --git a/frontend/src/app/billing/plan-card.tsx b/frontend/src/app/billing/plan-card.tsx index 6c5a2db5bc..f8ece96544 100644 --- a/frontend/src/app/billing/plan-card.tsx +++ b/frontend/src/app/billing/plan-card.tsx @@ -51,7 +51,7 @@ function PlanCard({

Includes: