mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2024-12-13 22:05:39 +00:00
b68d61068a
* 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
26 lines
518 B
YAML
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 }}
|