fluence-js/.github/workflows/run-tests.yml
Anatolios Laskaris b160fb7edc
ci: Add registry to e2e (#193)
* Add registry tests

* Fix
2022-10-10 22:03:03 +04:00

46 lines
1014 B
YAML

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