Skip to content

Run E2E tests on CI #14

Run E2E tests on CI

Run E2E tests on CI #14

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: E2E tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21.7"
- uses: oven-sh/setup-bun@v2
- run: go mod tidy
- run: cd reporters/golang && go mod tidy && cd ../..
- run: cd reporters/javascript && bun install && bun run build && cd ../..
- run: cd frontend && bun install && cd ../..
- run: cd e2e-tests && bun install && bunx playwright install && cd ../..
- run: cd e2e-tests && DEBUG=1 bun run test -- tests/javascript-server/javascript-server.spec.ts && cd ../..