Skip to content

chore(config): Use pnpm workspaces #10

chore(config): Use pnpm workspaces

chore(config): Use pnpm workspaces #10

Workflow file for this run

name: Pull Request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [14, 16, 18]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
cache: 'pnpm'
- name: Installing dependencies
run: pnpm install --frozen-lockfile
- name: Running tests
run: pnpm -r test
- name: Running lint
run: pnpm -r lint
- name: Running typecheck
run: pnpm -r typecheck