Skip to content

Commit

Permalink
remove kinto e2e (#394)
Browse files Browse the repository at this point in the history
Co-authored-by: mouseless <[email protected]>
  • Loading branch information
mouseless0x and mouseless0x authored Jan 8, 2025
1 parent 8c42caa commit f9a09a1
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 35 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/kinto-e2e.yaml

This file was deleted.

42 changes: 42 additions & 0 deletions test/kinto-e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,45 @@ E2E tests for Kinto L2, the tests are performed by re-simulating succesfully min
```
pnpm run test
```

## Running with workflow

Add the following workflow entry:

```
name: Run Kinto-E2E Tests
env:
KINTO_RPC: ${{ secrets.KINTO_RPC }}
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
kinto-e2e:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Install and build alto
run: pnpm install && pnpm build
- name: Install test dependencies
run: cd test/kinto-e2e && pnpm install .
- name: Start tests
run: cd test/kinto-e2e && pnpm run test
```

0 comments on commit f9a09a1

Please sign in to comment.