[ECO-23439] Add --move-2
flag to rewards publish command
#441
Workflow file for this run
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
--- | |
jobs: | |
playwright-tests: | |
defaults: | |
run: | |
working-directory: 'src/typescript' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v4' | |
with: | |
submodules: 'false' | |
- uses: 'actions/setup-node@v4' | |
with: | |
node-version-file: 'src/typescript/.node-version' | |
- name: 'Install dependencies' | |
run: 'npm install -g pnpm && pnpm install' | |
- env: | |
GITHUB_ACCESS_TOKEN: '${{ secrets.TRADING_VIEW_REPO_ACCESS_TOKEN }}' | |
TRADING_VIEW_REPO_OWNER: '${{ secrets.TRADING_VIEW_REPO_OWNER }}' | |
name: 'Clone submodule' | |
run: 'pnpm run submodule' | |
- name: 'Install Playwright Browsers' | |
run: 'pnpm run playwright:install' | |
- name: 'Run Playwright tests' | |
run: 'pnpm run test:frontend' | |
- if: '${{ failure() }}' | |
name: 'Upload screenshots as artifacts' | |
uses: 'actions/upload-artifact@v4' | |
with: | |
name: 'playwright-screenshots' | |
path: 'src/typescript/frontend/screenshots/' | |
- if: '${{ !cancelled() }}' | |
name: 'Upload Playwright report as artifact' | |
uses: 'actions/upload-artifact@v4' | |
with: | |
name: 'playwright-report' | |
path: 'src/typescript/frontend/playwright-report/' | |
retention-days: 30 | |
timeout-minutes: 15 | |
name: 'Run the frontend tests' | |
"on": | |
pull_request: null | |
push: | |
branches: | |
- 'main' | |
- 'production' | |
workflow_dispatch: null | |
... |