Adding end-to-end test run in Github actions

This commit is contained in:
David Négrier 2021-11-23 15:49:44 +01:00
parent a82f4e1813
commit 3aec774cf3
1 changed files with 30 additions and 0 deletions

30
.github/workflows/end_to_end_tests.yml vendored Normal file
View File

@ -0,0 +1,30 @@
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "End to end tests"
on:
push:
branches:
- master
- develop
pull_request:
jobs:
end-to-end-tests:
name: "End-to-end testcafe tests"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v2.0.0"
- name: "Setup .env file"
run: cp .env.template .env
- name: "Start environment"
run: docker-compose up -d
- name: "Run tests"
run: docker-compose -f docker-compose.testcafe.yml up