Skip to content

feat: Phase 8 — Testing and verification #2

feat: Phase 8 — Testing and verification

feat: Phase 8 — Testing and verification #2

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm build
- run: pnpm test
- run: node scripts/test-marketplace-install.js