Skip to content

Pnpm migration and node bumping #633

Pnpm migration and node bumping

Pnpm migration and node bumping #633

Workflow file for this run

name: Test Sandbox
on:
pull_request:
push:
branches:
- main
jobs:
sandbox:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
node-version: [20]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v4.0.0
with:
version: 9.15.0
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test:sandbox:ci-with-ignore --fail-fast