Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shamsartem committed Oct 17, 2024
1 parent 56875ca commit 489970b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/install-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: ./install.sh

- name: Check fluence
run: ${FLUENCE_USER_DIR}/packages/cli/package/bin/fluence --version
run: ${FLUENCE_USER_DIR}/cli/bin/fluence --version

- name: Cleanup
if: always()
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"pack-win32-x64": "turbo run pack-win32-x64 --cache-dir=.turbo",
"on-each-commit": "turbo run on-each-commit --cache-dir=.turbo",
"download-marine-and-mrepl": "yarn ./packages/cli/package download-marine-and-mrepl",
"generate-templates": "turbo run generate-templates --cache-dir=.turbo",
"generate-templates": "yarn ./packages/cli/package generate-templates",
"local-up": "yarn ./packages/cli/package local-up",
"vitest-provider": "turbo run vitest-provider --cache-dir=.turbo",
"vitest-deal-deploy": "turbo run vitest-deal-deploy --cache-dir=.turbo",
"vitest-deal-update": "turbo run vitest-deal-update --cache-dir=.turbo",
"vitest-smoke": "turbo run vitest-smoke --cache-dir=.turbo",
"vitest-js-to-aqua": "turbo run vitest-js-to-aqua --cache-dir=.turbo",
"vitest-provider": "yarn ./packages/cli/package vitest-provider",
"vitest-deal-deploy": "yarn ./packages/cli/package vitest-deal-deploy",
"vitest-deal-update": "yarn ./packages/cli/package vitest-deal-update",
"vitest-smoke": "yarn ./packages/cli/package vitest-smoke",
"vitest-js-to-aqua": "yarn ./packages/cli/package vitest-js-to-aqua",
"vitest": "yarn vitest-provider && yarn vitest-deal-deploy && yarn vitest-deal-update && yarn vitest-smoke && yarn vitest-js-to-aqua",
"test": "yarn download-marine-and-mrepl && yarn generate-templates && yarn local-up && yarn vitest",
"test-linux-x64": "yarn pack-linux-x64 && yarn test",
Expand Down
10 changes: 1 addition & 9 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,6 @@
"pack-win32-x64": {
"dependsOn": ["build"],
"outputs": ["package/dist/**"]
},
"generate-templates": {
"outputs": ["package/test/tmp/templates/**"]
},
"vitest-provider": {},
"vitest-deal-deploy": {},
"vitest-deal-update": {},
"vitest-smoke": {},
"vitest-js-to-aqua": {}
}
}
}

0 comments on commit 489970b

Please sign in to comment.