Skip to content

chore: Fix corepack errors in CI #238

chore: Fix corepack errors in CI

chore: Fix corepack errors in CI #238

Workflow file for this run

name: Unit - Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# - name: Enable corepack
# run: corepack enable
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.x
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm install
env:
CI: true
- name: Run tests
run: pnpm test