Skip to content

fix linting and building #9

fix linting and building

fix linting and building #9

Workflow file for this run

name: "Tests"
on:
push:
branches:
- main
paths:
- 'packages/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- run: pnpm install --frozen-lockfile --ignore-scripts
- run: pnpm build
- run: pnpm test:unit