Skip to content

⚑ chore: migrate from yarn to pnpm package manager #272

⚑ chore: migrate from yarn to pnpm package manager

⚑ chore: migrate from yarn to pnpm package manager #272

Workflow file for this run

name: ci
on: [pull_request]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v7
with:
node-version: 20.x
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: 10.12.4
cache: true
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Linting
run: pnpm lint
- name: Test
run: pnpm test --coverage=false
- name: Build
run: pnpm build