-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refatoração na estrutura dos pipelines
- Loading branch information
1 parent
997d2f4
commit 00a4e41
Showing
5 changed files
with
169 additions
and
115 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: BrowserStack Tests | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
name: E2E Tests 🤖🤖 | ||
|
||
steps: | ||
- name: Checkout 🚀🚀 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python 🔧🔧 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Install dependencies ➕➕ | ||
run: pip install -r requirements.txt | ||
|
||
- name: BrowserStack Env Setup 🔧🔧 | ||
uses: browserstack/github-actions/setup-env@master | ||
with: | ||
username: ${{ secrets.BROWSERSTACK_USERNAME }} | ||
access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | ||
|
||
- name: Run tests 🧪🧪 | ||
run: browserstack-sdk robot -d ./reports -e ignore-bs tests/ | ||
|
||
- name: Publish Robot Reports 📄📄 | ||
uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: Robot-Reports | ||
path: reports | ||
retention-days: 90 | ||
if-no-files-found: warn | ||
|
||
- name: Slack Notification - Success | ||
if: ${{ success() }} | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
SLACK_CHANNEL: pipeline-notifications | ||
SLACK_COLOR: ${{ job.status }} | ||
SLACK_ICON: https://cdn-icons-png.flaticon.com/512/1642/1642322.png | ||
SLACK_TITLE: 'All tests passed successfully' | ||
SLACK_MESSAGE: ':robot: Tests passed :robot:' | ||
SLACK_USERNAME: SUCCESS | ||
|
||
- name: Slack Notification - Failure | ||
if: ${{ failure() }} | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
SLACK_CHANNEL: pipeline-notifications | ||
SLACK_COLOR: ${{ job.status }} | ||
SLACK_ICON: https://cdn-icons-png.flaticon.com/512/3271/3271351.png | ||
SLACK_TITLE: 'Some tests failed' | ||
SLACK_MESSAGE: ':fire: Tests failed :fire:' | ||
SLACK_USERNAME: FAILURE | ||
|
||
reports: | ||
if: always() | ||
needs: [tests] | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
name: Reports 📄📄 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download Robot Reports | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Robot-Reports | ||
path: reports | ||
|
||
- name: Send report to commit | ||
uses: joonvena/[email protected] | ||
with: | ||
gh_access_token: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Robot Framework Tests | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
name: E2E Tests 🤖🤖 | ||
|
||
steps: | ||
- name: Checkout 🚀🚀 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python 🔧🔧 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Install dependencies ➕➕ | ||
run: pip install -r requirements.txt | ||
|
||
- name: Run tests 🧪🧪 | ||
run: robot -d ./reports -v BROWSER:headlesschrome tests/ | ||
|
||
- name: Publish Robot Reports 📄📄 | ||
uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: Robot-Reports | ||
path: reports | ||
retention-days: 90 | ||
if-no-files-found: warn | ||
|
||
- name: Slack Notification - Success | ||
if: ${{ success() }} | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
SLACK_CHANNEL: pipeline-notifications | ||
SLACK_COLOR: ${{ job.status }} | ||
SLACK_ICON: https://cdn-icons-png.flaticon.com/512/1642/1642322.png | ||
SLACK_TITLE: 'All tests passed successfully' | ||
SLACK_MESSAGE: ':robot: Tests passed :robot:' | ||
SLACK_USERNAME: SUCCESS | ||
|
||
- name: Slack Notification - Failure | ||
if: ${{ failure() }} | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
SLACK_CHANNEL: pipeline-notifications | ||
SLACK_COLOR: ${{ job.status }} | ||
SLACK_ICON: https://cdn-icons-png.flaticon.com/512/3271/3271351.png | ||
SLACK_TITLE: 'Some tests failed' | ||
SLACK_MESSAGE: ':fire: Tests failed :fire:' | ||
SLACK_USERNAME: FAILURE | ||
|
||
reports: | ||
if: always() | ||
needs: [tests] | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
name: Reports 📄📄 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download Robot Reports | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Robot-Reports | ||
path: reports | ||
|
||
- name: Send report to commit | ||
uses: joonvena/[email protected] | ||
with: | ||
gh_access_token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
00a4e41
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Robot Results
Passed Tests
Home
Home
Home
Home
Signup
Signup
Signup
Signup
Signup
Signup
00a4e41
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Robot Results
Passed Tests
Home
Home
Home
Home
Signup
Signup
Signup
Signup
Signup