mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2024-12-14 14:25:38 +00:00
b160fb7edc
* Add registry tests * Fix
46 lines
1014 B
YAML
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 }}"
|