Test Local Action #11
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
name: Test Local Action | |
on: | |
workflow_dispatch: | |
inputs: | |
retries: | |
description: 'Number of test runs to show as retries in report' | |
default: '10' | |
show-history: | |
description: 'Show keep history in report' | |
type: boolean | |
default: true | |
report-name: | |
description: 'Title of the report' | |
default: 'Allure Report' | |
jobs: | |
test-local: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.5 | |
with: | |
ref: 'javascript' | |
- name: Deploy Reports to Firebase with History and Retries | |
uses: ./ | |
with: | |
target: 'firebase' | |
google_credentials_json: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} | |
allure_results_path: 'allure-results' | |
storage_bucket: ${{secrets.STORAGE_BUCKET}} | |
slack_channel: ${{secrets.SLACK_CHANNEL}} | |
slack_token: ${{secrets.SLACK_TOKEN}} | |
show_history: ${{github.event.inputs.show-history}} | |
retries: ${{github.event.inputs.retries}} | |
prefix: 'test-action-firebase' |