Skip to content

Commit

Permalink
Setup GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vikmaksymenko committed Aug 18, 2023
1 parent cf17d1b commit 047031d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: allure-report
on:
push:
branches:
- master
jobs:
start-app:
runs-on: ubuntu-latest
container:
image: vmaksimenko/bulldoggy-reminders-app
ports:
- 8000

run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Cypress install
uses: cypress-io/github-action@v5

- name: Upload Allure Results
uses: actions/upload-artifact@v2
with:
name: allure-results
path: allure-results

0 comments on commit 047031d

Please sign in to comment.