FE prod tests set to custom branch #2235
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: e2e workflow | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
push: | |
branches: [ main ] | |
workflow_dispatch: | |
inputs: | |
scriptName: | |
description: 'Name of the script to run' | |
required: false | |
default: 'test-sequential-e2e' | |
dockerImage: | |
description: 'identifier, ie runId or sha' | |
required: false | |
default: 'latest' | |
# For manually trigger | |
jobs: | |
test: | |
name: Test code quality and run tests | |
runs-on: ubuntu-latest | |
env: | |
API_URL: 'ws://172.16.238.10:9944' | |
TEST_PALLET_ADDRESS: ${{ secrets.TEST_PALLET_ADDRESS }} | |
E2E_XYK_PALLET_ADDRESS: ${{ secrets.E2E_XYK_PALLET_ADDRESS }} | |
E2E_TREASURY_PALLET_ADDRESS: ${{ secrets.E2E_TREASURY_PALLET_ADDRESS }} | |
E2E_TREASURY_BURN_PALLET_ADDRESS : ${{ secrets.E2E_TREASURY_BURN_PALLET_ADDRESS }} | |
TEST_SUDO_NAME: ${{ secrets.TEST_SUDO_NAME }} | |
TEST_SCRIPT: 'test-sequential-e2e' | |
MANGATA_NODE_VERSION: 'latest' | |
steps: | |
- name: Set variables | |
run: | | |
echo "TEST_SCRIPT=${{ github.event.inputs.scriptName || env.TEST_SCRIPT }}" >> $GITHUB_ENV | |
echo "MANGATA_NODE_VERSION=${{ github.event.inputs.dockerImage || env.MANGATA_NODE_VERSION }}" >> $GITHUB_ENV | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Install dependencies with Yarn | |
run: yarn | |
- name: Tsc code quality check | |
run: yarn tsc-lint --skipLibCheck | |
- name: ESLint code quality check | |
run: yarn eslint |