name: Cypress - token on: workflow_call: inputs: trigger: required: true type: string default: 'false' skip-cache: required: false type: string tags: required: false type: string jobs: token-e2e: if: ${{ inputs.trigger == 'true' }} runs-on: self-hosted timeout-minutes: 60 steps: - name: Vega version run: vega version - name: Vegacapsule version run: vegacapsule version # Checkout front ends - name: Checkout frontend mono repo uses: actions/checkout@v3 with: fetch-depth: 0 path: './frontend-monorepo' # Restore node_modules from cache if possible - name: Restore node_modules from cache uses: actions/cache@v3 with: path: | frontend-monorepo/node_modules /home/runner/.cache/Cypress key: node_modules_cypress-${{ hashFiles('frontend-monorepo/yarn.lock') }} # Install frontend dependencies - name: Install root dependencies run: yarn install --frozen-lockfile working-directory: frontend-monorepo ####### ## Build and run Vegacapsule network ####### - name: Build and run Vegacapsule network uses: ./frontend-monorepo/.github/actions/run-vegacapsule ###### ## Setup a Vega wallet for our user ###### - name: Set up Vegawallet for docker id: setup-vega uses: ./frontend-monorepo/.github/actions/setup-vegawallet-docker with: passphrase: ${{ secrets.CYPRESS_TRADING_TEST_VEGA_WALLET_PASSPHRASE }} ###### ## Run some tests ###### # To make sure that all Cypress binaries are installed properly - name: Install cypress bins run: yarn cypress install working-directory: frontend-monorepo - name: Run Cypress tests run: npx nx run token-e2e:e2e ${{ inputs.skip-cache }} --record --key ${{ secrets.CYPRESS_RECORD_KEY }} --browser chrome ${{ inputs.tags }} working-directory: frontend-monorepo env: CYPRESS_TRADING_TEST_VEGA_WALLET_PASSPHRASE: ${{ secrets.CYPRESS_TRADING_TEST_VEGA_WALLET_PASSPHRASE }} CYPRESS_SLACK_WEBHOOK: ${{ secrets.CYPRESS_SLACK_WEBHOOK }} CYPRESS_ETH_WALLET_MNEMONIC: ${{ secrets.CYPRESS_ETH_WALLET_MNEMONIC }} CYPRESS_VEGA_WALLET_API_TOKEN: ${{ steps.setup-vega.outputs.token }} ###### ## Upload logs ###### - uses: actions/upload-artifact@v2 if: ${{ always() }} with: name: logs path: /home/runner/.vegacapsule/testnet/logs