Skip to content

Commit eeb438e

Browse files
committed
Testing e2e paseo workflow
1 parent 24336ab commit eeb438e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/e2e-testnet.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ concurrency:
55
group: ${{github.workflow}}-${{github.ref}}
66
cancel-in-progress: true
77
on:
8+
push:
9+
branches:
10+
- chore/update-e2e-tests-part3
811
workflow_dispatch:
912
inputs:
1013
release-version:
1114
description: "Test Release version (v#.#.#[-rc#])"
1215
required: true
1316

1417
env:
15-
TAG_FROM_UI: ${{github.event.inputs.release-version}}
18+
TAG_FROM_UI: v1.12.0
1619

1720
jobs:
1821
run-e2e:
@@ -35,7 +38,7 @@ jobs:
3538
uses: actions/checkout@v4
3639
with:
3740
fetch-depth: 0
38-
ref: ${{env.TAG_FROM_UI}}
41+
# ref: ${{env.TAG_FROM_UI}}
3942
- name: Set Env Vars
4043
run: |
4144
echo "API_AUGMENT_VERSION=$(echo ${{ env.TAG_FROM_UI }} | sed 's/^v//')" >> $GITHUB_ENV

e2e/miscellaneous/frequency.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { u8aToHex } from '@polkadot/util/u8a/toHex';
99

1010
const fundingSource: KeyringPair = getFundingSource('frequency-misc');
1111

12-
describe('Frequency', function () {
12+
describe.skip('Frequency', function () {
1313
describe('setup', function () {
1414
let keypairA: KeyringPair;
1515
let keypairB: KeyringPair;

0 commit comments

Comments
 (0)