-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #568 from OasisDEX/daily-improvements-16-oct-2
Daily improvements - 16 October
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
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,44 @@ | ||
name: 0.1. Regression - Tests ith real wallet | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
base_url: | ||
description: 'Environment base URL to run the tests on.' | ||
type: string | ||
default: 'https://staging.summer.fi' | ||
required: true | ||
flags_features: | ||
description: 'Features Flags to enable / disable. For example: "flag1:true flag2:false"' | ||
type: string | ||
default: '' | ||
required: false | ||
|
||
jobs: | ||
with-real-wallet-tests: | ||
name: 'Tests with real wallet' | ||
runs-on: ubuntu-latest | ||
container: | ||
image: synthetixio/docker-node:18.16-ubuntu | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
- name: Install dependencies | ||
run: yarn | ||
- name: Install playwright | ||
run: npx playwright install && npx playwright install-deps | ||
- name: Install xvfb | ||
run: apt-get update -y && apt-get -y install xvfb && rm -rf /var/lib/apt/lists/* /var/cache/apt/* | ||
- name: Run 'With real wallet' tests | ||
run: | | ||
BASE_URL=${{ inputs.base_url }} \ | ||
FLAGS_FEATURES=${{ inputs.flags_features}} \ | ||
yarn ci:with-real-wallet: | ||
- uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: playwright-report-with-real-wallet | ||
path: playwright-reports/with-real-wallet | ||
retention-days: 30 |
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