Skip to content

fix type errors?

fix type errors? #19

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm turbo --filter "./packages/*" build
- name: Test, lint and type-check
run: pnpm turbo lint typecheck test
# manypkg doesnt work with workspaces
# - name: Check workspaces
# run: pnpm manypkg check