Skip to content

fix: pin @effect/platform-node-shared to prevent npm resolving incomp… #1152

fix: pin @effect/platform-node-shared to prevent npm resolving incomp…

fix: pin @effect/platform-node-shared to prevent npm resolving incomp… #1152

Workflow file for this run

name: E2E Tests
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
e2e:
name: E2E (${{ matrix.os }})
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
GITHUB_ACTIONS: "1"
- name: Build browser runtime
run: pnpm --filter @expect/browser run build
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium webkit firefox
- name: Run E2E tests
run: pnpm --filter @expect/browser test