Skip to content

fix: project splits editor allows more than 200 splits #511

fix: project splits editor allows more than 200 splits

fix: project splits editor allows more than 200 splits #511

Workflow file for this run

name: Run e2e tests
on: [pull_request, workflow_dispatch]
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Populate .env file
uses: SpicyPizza/[email protected]
with:
envkey_PINATA_SDK_KEY: ${{ secrets.PINATA_SDK_KEY }}
envkey_PINATA_SDK_SECRET: ${{ secrets.PINATA_SDK_SECRET }}
envkey_TENDERLY_ACCESS_SECRET: ${{ secrets.TENDERLY_ACCESS_SECRET }}
envkey_TENDERLY_PROJECT: ${{ secrets.TENDERLY_PROJECT }}
envkey_TENDERLY_USER: ${{ secrets.TENDERLY_USER }}
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Svelte Kit Sync
run: npx svelte-kit sync
- name: Run E2E tests
run: npm run e2e