mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2024-12-04 18:00:18 +00:00
702ad605a8
* Update avm * Update nox image * Fix lint * Bump marine * fix lint * update tag
54 lines
1.3 KiB
YAML
54 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:
|
|
- "main"
|
|
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:
|
|
needs:
|
|
- js-client
|
|
|
|
uses: fluencelabs/aqua/.github/workflows/tests.yml@main
|
|
with:
|
|
js-client-snapshots: "${{ needs.js-client.outputs.js-client-snapshots }}"
|
|
nox-image: "docker.fluence.dev/nox:renovate-avm_4905_1"
|
|
flox:
|
|
needs:
|
|
- js-client
|
|
|
|
uses: fluencelabs/flox/.github/workflows/tests.yml@main
|
|
with:
|
|
js-client-snapshots: "${{ needs.js-client.outputs.js-client-snapshots }}"
|
|
nox-image: "docker.fluence.dev/nox:renovate-avm_4905_1" |