Skip to content

Commit

Permalink
ci: open pr e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
jotanarciso committed Nov 6, 2024
1 parent cae934f commit d51df3e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: E2E Tests

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
pr-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}

- name: Install dependencies
run: yarn install

- name: Install Docker Compose
run: |
curl -L "https://github.com/docker/compose/releases/download/v2.29.7/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
docker-compose --version
- name: Run E2E tests
run: yarn test:e2e
File renamed without changes.

0 comments on commit d51df3e

Please sign in to comment.