Skip to content

chore: Migrating the package manager from yarn to pnpm #107

chore: Migrating the package manager from yarn to pnpm

chore: Migrating the package manager from yarn to pnpm #107

Workflow file for this run

name: Test
on:
pull_request:
types:
- synchronize
- opened
- reopened
- unlocked
paths:
- "src/extension/**"
push:
branches:
- main
paths:
- "src/extension/**"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup Node 22
uses: actions/setup-node@v6
with:
node-version: "22.18.0"
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.0
- uses: extractions/setup-just@v3
- name: Install dependencies
run: just deps-extension
- name: Run tests with coverage
run: just test coverage