Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

uses: fluencelabs/aqua/.github/workflows/snapshot.yml@main
with:
fluence-js-version: ${{ needs.snapshot.outputs.fluence-js-version }}
fluence-js-version: "=${{ needs.snapshot.outputs.fluence-js-version }}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think equals is needed here


aqua-playground:
needs:
Expand All @@ -33,5 +33,13 @@ jobs:

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 }}
fluence-js-version: "=${{ needs.snapshot.outputs.fluence-js-version }}"
aqua-version: "=${{ needs.aqua-snapshot.outputs.aqua-version }}"

registry:
needs:
- aqua-snapshot

uses: fluencelabs/registry/.github/workflows/tests.yml@main
with:
aqua-version: "=${{ needs.aqua-snapshot.outputs.aqua-version }}"
4 changes: 2 additions & 2 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Set avm version from branch
if: inputs.avm-version != ''
working-directory: packages/fluence-js
run: pnpm add --save @fluencelabs/avm@${{ inputs.avm-version }}
run: pnpm add --save -E @fluencelabs/avm@${{ inputs.avm-version }}

- run: pnpm -r build

Expand Down Expand Up @@ -109,5 +109,5 @@ jobs:
To install it run:
```shell
npm login --registry https://npm.fluence.dev
npm i @fluencelabs/fluence@=${{ env.FLUENCE_JS_VERSION }} --registry=https://npm.fluence.dev
npm i -E @fluencelabs/fluence@${{ env.FLUENCE_JS_VERSION }} --registry=https://npm.fluence.dev
```
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Set avm version from branch
if: inputs.avm-version != ''
working-directory: packages/fluence-js
run: pnpm add --save @fluencelabs/avm@${{ inputs.avm-version }}
run: pnpm add --save -E @fluencelabs/avm@${{ inputs.avm-version }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you can omit --save here when using -E


- run: pnpm -r build
- run: pnpm -r test