mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2024-12-13 05:55:33 +00:00
73bce39621
* Prepare for aquavm e2e * Checkout to fluence-js repo * Updates * Use cache * Fix setting up node version
24 lines
479 B
YAML
24 lines
479 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:
|
|
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 }}
|