fluence-js/.github/workflows/run-tests.yml
Anatoly Laskaris 3b05852a65
chore: Small E2E tuning (#184)
* Make comment a step instead of a job

To save space on summary screen of github actions

* Build aqua with fluence-js snapshot

* Typo

* Another typo

* Use short sha from branch

* Fix permissions?

* Fix

* Install then set version

* Better names

* Even better names
2022-09-14 17:43:17 +03:00

38 lines
813 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 }}