Skip to content

Commit 413c4db

Browse files
committed
run only asset-exchange
1 parent e14d4e5 commit 413c4db

File tree

3 files changed

+81
-81
lines changed

3 files changed

+81
-81
lines changed

.github/workflows/playwright_asset_exchange.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: chmod +x sandboxrpc/target/debug/sandboxrpc
4848
- name: Run tests
4949
run: |
50-
npx playwright test --project=${{ matrix.project }} --shard=${{ matrix.shard }} --reporter=html
50+
npx playwright test playwright-tests/tests/asset-exchange --project=${{ matrix.project }} --shard=${{ matrix.shard }} --reporter=html
5151
# Upload Test Videos (only if there are failures)
5252
- name: Upload Test Videos
5353
if: failure()
Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
1-
name: "Test Treasury Factory Rust"
2-
on:
3-
workflow_call: {}
4-
pull_request:
5-
push:
6-
branches:
7-
- main
1+
# name: "Test Treasury Factory Rust"
2+
# on:
3+
# workflow_call: {}
4+
# pull_request:
5+
# push:
6+
# branches:
7+
# - main
88

9-
concurrency:
10-
group: web4-treasury-factory-${{ github.ref }}
11-
cancel-in-progress: true
9+
# concurrency:
10+
# group: web4-treasury-factory-${{ github.ref }}
11+
# cancel-in-progress: true
1212

13-
jobs:
14-
code-formatting:
15-
name: Code Formatting
16-
runs-on: ubuntu-latest
17-
steps:
18-
- name: Checkout repository
19-
uses: actions/checkout@v4
20-
- run: cargo fmt --check
21-
working-directory: ./treasury-factory
13+
# jobs:
14+
# code-formatting:
15+
# name: Code Formatting
16+
# runs-on: ubuntu-latest
17+
# steps:
18+
# - name: Checkout repository
19+
# uses: actions/checkout@v4
20+
# - run: cargo fmt --check
21+
# working-directory: ./treasury-factory
2222

23-
code-linter:
24-
name: Code Linter
25-
runs-on: ubuntu-latest
26-
steps:
27-
- name: Checkout repository
28-
uses: actions/checkout@v4
29-
- name: Run cargo clippy
30-
run: |
31-
rustup component add clippy
32-
cargo clippy --all-features --workspace --tests -- --warn clippy::all --warn clippy::nursery
33-
working-directory: ./treasury-factory
23+
# code-linter:
24+
# name: Code Linter
25+
# runs-on: ubuntu-latest
26+
# steps:
27+
# - name: Checkout repository
28+
# uses: actions/checkout@v4
29+
# - name: Run cargo clippy
30+
# run: |
31+
# rustup component add clippy
32+
# cargo clippy --all-features --workspace --tests -- --warn clippy::all --warn clippy::nursery
33+
# working-directory: ./treasury-factory
3434

35-
tests:
36-
name: Tests
37-
runs-on: ubuntu-latest
38-
steps:
39-
- name: Checkout repository
40-
uses: actions/checkout@v4
41-
- name: Run cargo test
42-
run: cargo test -- --nocapture
43-
working-directory: ./treasury-factory
35+
# tests:
36+
# name: Tests
37+
# runs-on: ubuntu-latest
38+
# steps:
39+
# - name: Checkout repository
40+
# uses: actions/checkout@v4
41+
# - name: Run cargo test
42+
# run: cargo test -- --nocapture
43+
# working-directory: ./treasury-factory
Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
1-
name: "Test web4 Rust"
2-
on:
3-
workflow_call: {}
4-
pull_request:
5-
push:
6-
branches:
7-
- main
1+
# name: "Test web4 Rust"
2+
# on:
3+
# workflow_call: {}
4+
# pull_request:
5+
# push:
6+
# branches:
7+
# - main
88

9-
concurrency:
10-
group: web4-contract-${{ github.ref }}
11-
cancel-in-progress: true
9+
# concurrency:
10+
# group: web4-contract-${{ github.ref }}
11+
# cancel-in-progress: true
1212

13-
jobs:
14-
code-formatting:
15-
name: Code Formatting
16-
runs-on: ubuntu-latest
17-
steps:
18-
- name: Checkout repository
19-
uses: actions/checkout@v4
20-
- run: cargo fmt --check
21-
working-directory: ./web4/treasury-web4
13+
# jobs:
14+
# code-formatting:
15+
# name: Code Formatting
16+
# runs-on: ubuntu-latest
17+
# steps:
18+
# - name: Checkout repository
19+
# uses: actions/checkout@v4
20+
# - run: cargo fmt --check
21+
# working-directory: ./web4/treasury-web4
2222

23-
tests-and-lint:
24-
name: Tests and linting
25-
runs-on: ubuntu-latest
26-
steps:
27-
- name: Checkout repository
28-
uses: actions/checkout@v4
29-
- name: Install cargo-near CLI
30-
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/cargo-near/releases/latest/download/cargo-near-installer.sh | sh
31-
- name: Build web4 contract
32-
run: cargo near build reproducible-wasm
33-
working-directory: ./web4/treasury-web4
34-
- name: Build treasury-factory
35-
run: cargo near build reproducible-wasm
36-
working-directory: ./treasury-factory
37-
- name: Run cargo clippy
38-
run: |
39-
rustup component add clippy
40-
cargo clippy --all-features --workspace --tests -- --warn clippy::all --warn clippy::nursery
41-
working-directory: ./web4/treasury-web4
42-
- name: Run cargo test
43-
run: cargo test
44-
working-directory: ./web4/treasury-web4
23+
# tests-and-lint:
24+
# name: Tests and linting
25+
# runs-on: ubuntu-latest
26+
# steps:
27+
# - name: Checkout repository
28+
# uses: actions/checkout@v4
29+
# - name: Install cargo-near CLI
30+
# run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/cargo-near/releases/latest/download/cargo-near-installer.sh | sh
31+
# - name: Build web4 contract
32+
# run: cargo near build reproducible-wasm
33+
# working-directory: ./web4/treasury-web4
34+
# - name: Build treasury-factory
35+
# run: cargo near build reproducible-wasm
36+
# working-directory: ./treasury-factory
37+
# - name: Run cargo clippy
38+
# run: |
39+
# rustup component add clippy
40+
# cargo clippy --all-features --workspace --tests -- --warn clippy::all --warn clippy::nursery
41+
# working-directory: ./web4/treasury-web4
42+
# - name: Run cargo test
43+
# run: cargo test
44+
# working-directory: ./web4/treasury-web4

0 commit comments

Comments
 (0)