Skip to content

Commit

Permalink
Add Selenium Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
StarDylan committed Jan 9, 2025
1 parent 9fcc4ff commit a031f30
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/e2e_selenium.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build and test - with Dev image

on:
push:
# branches: [main]/
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build Production image
run: docker image build -t femr .

- name: Build Integration Test Container
run: cd integration_test
docker image build -t tester .

- name: Run tests
run: |
docker run \
-v /var/run/docker.sock:/var/run/docker.sock \
-e FEMR_IMAGE_NAME="femr" \
tester

0 comments on commit a031f30

Please sign in to comment.