mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2025-04-24 17:32:14 +00:00
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
name: "e2e"
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- "**.md"
|
|
- ".github/**"
|
|
- "!.github/workflows/e2e.yml"
|
|
- "!.github/workflows/tests.yml"
|
|
- "!.github/workflows/snapshot.yml"
|
|
types:
|
|
- "labeled"
|
|
- "synchronize"
|
|
- "opened"
|
|
- "reopened"
|
|
push:
|
|
branches:
|
|
- "master"
|
|
paths-ignore:
|
|
- "**.md"
|
|
- ".github/**"
|
|
- "!.github/workflows/e2e.yml"
|
|
- "!.github/workflows/tests.yml"
|
|
- "!.github/workflows/snapshot.yml"
|
|
|
|
concurrency:
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
js-client:
|
|
if: >
|
|
github.event_name == 'push' ||
|
|
contains(github.event.pull_request.labels.*.name, 'e2e')
|
|
uses: ./.github/workflows/snapshot.yml
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
|
|
aqua-playground:
|
|
needs:
|
|
- js-client
|
|
|
|
uses: fluencelabs/aqua-playground/.github/workflows/tests.yml@master
|
|
with:
|
|
js-client-snapshots: "${{ needs.js-client.outputs.js-client-snapshots }}"
|
|
rust-peer-image: "docker.fluence.dev/nox:minimal_aquavm-0-39-1"
|
|
|
|
fluence-cli:
|
|
needs:
|
|
- js-client
|
|
|
|
uses: fluencelabs/fluence-cli/.github/workflows/tests.yml@main
|
|
with:
|
|
js-client-snapshots: "${{ needs.js-client.outputs.js-client-snapshots }}"
|
|
rust-peer-image: "docker.fluence.dev/nox:minimal_aquavm-0-39-1"
|