fluence-js/.github/workflows/e2e.yml
2022-12-01 20:03:02 +03:00

52 lines
1.0 KiB
YAML

name: "e2e"
on:
pull_request:
paths-ignore:
- "**.md"
push:
branches:
- "master"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
tests:
name: "fluence-js"
uses: ./.github/workflows/tests.yml
with:
ref: ${{ github.ref }}
fluence-js:
uses: ./.github/workflows/snapshot.yml
with:
ref: ${{ github.ref }}
aqua:
needs:
- fluence-js
uses: fluencelabs/aqua/.github/workflows/snapshot.yml@main
with:
fluence-js-version: "${{ needs.fluence-js.outputs.fluence-js-version }}"
aqua-playground:
needs:
- fluence-js
- aqua
uses: fluencelabs/aqua-playground/.github/workflows/tests.yml@master
with:
fluence-js-version: "${{ needs.fluence-js.outputs.fluence-js-version }}"
aqua-version: "${{ needs.aqua.outputs.aqua-version }}"
registry:
needs:
- aqua
uses: fluencelabs/registry/.github/workflows/tests.yml@main
with:
aqua-version: "${{ needs.aqua.outputs.aqua-version }}"