Skip to content

Commit

Permalink
Merge branch 'develop' into feature/integration-test-for-pos-and-sess…
Browse files Browse the repository at this point in the history
…ions-monitoring
  • Loading branch information
mateuszaaa authored Oct 31, 2023
2 parents fd2cff1 + 9bb564d commit 9fdb335
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/reusable-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,17 +174,15 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '18.16.1'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
node-version: '18.18.2'

- name: Replace parachain docker image reference in config
working-directory: devops/parachain-launch
run: sed -i 's+mangatasolutions/mangata-node:.*+${{ env.PARACHAIN_DOCKER_IMAGE }}+g' config.yml

- name: Install e2e tests dependencies
working-directory: e2eTests
run: yarn cache clean; yarn
run: yarn install

- name: Install @mangata-finance/types deps
run: |
Expand All @@ -210,14 +208,16 @@ jobs:
- name: Run tests
working-directory: e2eTests
run: ${{ matrix.command }}
env:
NODE_OPTIONS: --max_old_space_size=12288

- name: Test Report
uses: dorny/[email protected]
continue-on-error: true
if: success() || failure() # run this step even if previous step failed
with:
name: E2E report ${{ matrix.command }} # Name of the check run which will be created
path: e2eTests/reports/junit-*.xml # Path to test results
path: e2eTests/reports/*.xml # Path to test results
reporter: jest-junit # Format of test results

- name: Submit results to the testmo-run
Expand Down

0 comments on commit 9fdb335

Please sign in to comment.