Skip to content

Commit

Permalink
GitHub Actions - Reusable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-langa committed May 17, 2024
1 parent aa77793 commit 292155e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/z_Reusable_RegressionNoWallet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Reusable Workflow - Regression - No wallet
name: Reusable Workflow - No wallet

on:
workflow_call:
Expand All @@ -13,6 +13,11 @@ on:
type: string
default: ''
required: false
script:
description: 'package.json scrip to be run'
type: string
default: 'ci:no-wallet:regression'
required: true

jobs:
no-wallet-tests:
Expand All @@ -28,7 +33,7 @@ jobs:
- name: Install dependencies
run: yarn
- name: Run NO-WALLET tests
run: BASE_URL=${{ inputs.base_url }} FLAGS_FEATURES=${{ inputs.flags_features}} yarn ci:no-wallet:regression
run: BASE_URL=${{ inputs.base_url }} FLAGS_FEATURES=${{ inputs.flags_features}} yarn ${{ inputs.script }}
- uses: actions/upload-artifact@v4
if: always()
with:
Expand Down

0 comments on commit 292155e

Please sign in to comment.