Skip to content

Commit

Permalink
Merge pull request #305 from OasisDEX/reusable-workflows-another-test-4
Browse files Browse the repository at this point in the history
GitHub Actions - Reusable workflows
  • Loading branch information
juan-langa authored May 17, 2024
2 parents aa77793 + 292155e commit d324555
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 d324555

Please sign in to comment.