Skip to content

Commit

Permalink
fixes for tests and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Celiant committed Oct 25, 2024
1 parent 5f97da4 commit 3aa591c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 31 deletions.
64 changes: 34 additions & 30 deletions .github/workflows/api-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,36 +49,40 @@ jobs:

- name: Build packages
run: |
pushd interfaces
yarn run build
popd
pushd common
yarn run build
popd
pushd notification-service
yarn run build
popd
pushd logger-service
yarn run build
popd
pushd auth-service
yarn run build
popd
pushd queue-service
yarn run build
popd
pushd guardian-service
yarn run build
popd
pushd policy-service
yarn run build
popd
pushd worker-service
yarn run build
popd
pushd api-gateway
yarn run build
popd
yarn
pushd interfaces
yarn run build
popd
pushd common
yarn run build
popd
pushd logger-service
yarn run build
popd
pushd notification-service
yarn run build
popd
pushd frontend
npm install
npm run build
npm run build:prod
npm run build:demo
popd
pushd auth-service
yarn run build
popd
pushd policy-service
yarn run build
popd
pushd guardian-service
yarn run build
popd
pushd worker-service
yarn run build
popd
pushd api-gateway
yarn run build
popd
- name: Start NatsMQ
uses: step-security/nats-action@0306fc1c4e4f49dbe4db5865a3135ab1516a5aee # v0.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ context("Tokens", { tags: ['tokens', 'thirdPool'] }, () => {


it("Associate and disassociate the user with the provided Hedera token", { tags: ['smoke'] }, () => {
Authorization.getAccessToken(SRUsername).then((authorization) => {
Authorization.getAccessToken(UserUsername).then((authorization) => {
cy.request({
method: 'GET',
url: API.ApiServer + 'tokens',
Expand Down

0 comments on commit 3aa591c

Please sign in to comment.