Skip to content

Commit

Permalink
fix: add npx in front of nx
Browse files Browse the repository at this point in the history
  • Loading branch information
kasir-barati committed Mar 19, 2024
1 parent e720e55 commit 3820db8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/backend-e2e-tests.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: npm ci --ignore-scripts
- if: ${{ steps.backend-changes.outputs.backend == 'true' }}
name: Build backend docker image
run: nx build:docker backend
run: npx nx build:docker backend
- if: ${{ steps.backend-changes.outputs.backend == 'true' }}
name: Remove kickstart.json
run: rm -rf ./deployment/fusionauth/kickstart.json
Expand All @@ -84,9 +84,9 @@ jobs:
- if: ${{ steps.backend-changes.outputs.backend == 'true' }}
name: Initialize, and apply terraform
run: |
nx init:terraform backend
nx apply:terraform backend
nx apply:terraform backend
npx nx init:terraform backend
npx nx apply:terraform backend
npx nx apply:terraform backend
env:
TF_VAR_fusionauth_host: ${{ env.FUSIONAUTH_HOST }}
TF_VAR_fusionauth_issuer: ${{ env.FUSIONAUTH_ISSUER }}
Expand All @@ -95,10 +95,10 @@ jobs:
TF_VAR_fusionauth_email_configuration_password: ${{ env.FUSIONAUTH_EMAIL_CONFIGURATION_PASSWORD }}
- if: ${{ steps.backend-changes.outputs.backend == 'true' }}
name: Generate Open API
run: nx openapi:generate backend
run: npx nx openapi:generate backend
- if: ${{ steps.backend-changes.outputs.backend == 'true' }}
name: Execute e2e tests
run: nx test:e2e backend-e2e
run: npx nx test:e2e backend-e2e
- if: ${{ success() }}
name: Set commit status to success if tests passed
uses: guibranco/github-status-action-v2@v1.1.8
Expand Down

0 comments on commit 3820db8

Please sign in to comment.