Skip to content

chore: bump create-pareto to 4.0.0 #9

chore: bump create-pareto to 4.0.0

chore: bump create-pareto to 4.0.0 #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm --filter @paretojs/core test
e2e-tests:
name: E2E Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: npx playwright install --with-deps chromium
working-directory: examples
- run: pnpm test:e2e
working-directory: examples
- uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: examples/test-results/
retention-days: 7