mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2024-12-13 05:55:33 +00:00
3b05852a65
* 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
38 lines
813 B
YAML
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 }}
|