Skip to content

ci: show logs after e2e test #59

ci: show logs after e2e test

ci: show logs after e2e test #59

Workflow file for this run

name: Run e2e tests
on:
pull_request:
push:
branches:
- master
permissions: read-all
jobs:
e2e-test:
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@v4
- run: echo "NGROK_AUTHTOKEN=${NGROK_AUTHTOKEN}" > e2e/.env && make -C e2e start-ngrok
env:
NGROK_AUTHTOKEN: ${{ secrets.NGROK_AUTHTOKEN }}
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: "5.1.1"
- run: opam install . --deps-only --with-test
- run: opam exec -- make -C e2e create-cluster
- run: opam exec -- make -C e2e test
- run: opam exec -- make -C e2e logs-deploy-waq-web
if: always()