fluence-js/.github/workflows/run-tests.yml
Anatoly Laskaris b68d61068a
Use workflow_call to run tests/publish build snapshot and add E2E (#175)
* Add workflow_call

* Add missing import secrest

* Run e2e with aqua-playground (#179)

* Try to run e2e with aqua-playground

* Use workflow_call to run local tests and publish snapshot

* Run e2e and tests in parallel

* Colors!

* Always add comment

* Use master branch of aqua-playground

* Remove invalid `cache` key

* Update .github/workflows/run-tests.yml

* Fix branch name in version
2022-09-06 17:51:43 +03:00

26 lines
518 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
with:
ref: ${{ github.ref }}
snapshot:
uses: ./.github/workflows/snapshot.yml
aqua-playground:
needs: snapshot
uses: fluencelabs/aqua-playground/.github/workflows/tests.yml@master
with:
fluence-js-version: ${{ needs.snapshot.outputs.fluence-js-version }}