Skip to content

fix(docs): Fix IPv6 inaccuracies on the Supabase page (#1270) #284

fix(docs): Fix IPv6 inaccuracies on the Supabase page (#1270)

fix(docs): Fix IPv6 inaccuracies on the Supabase page (#1270) #284

name: create-electric-app / E2E
on:
workflow_call:
push:
branches:
- main
pull_request:
paths:
- 'pnpm-lock.yaml'
- 'examples/**'
- '!examples/**/**.md'
defaults:
run:
working-directory: examples/starter
concurrency:
group: starter-cli-e2e-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Deps
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Run tests
run: pnpm e2e