mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2024-12-13 14:05:32 +00:00
52 lines
1.0 KiB
YAML
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 }}"
|