-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/integration-test-for-pos-and-sess…
…ions-monitoring
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -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: | | ||
|
@@ -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 | ||
|