diff --git a/.github/scripts/ciScript.js b/.github/scripts/ciScript.js index f054146b..f8cb346c 100644 --- a/.github/scripts/ciScript.js +++ b/.github/scripts/ciScript.js @@ -56,7 +56,7 @@ module.exports = async ({ github, context, core }) => { backendFiles, backendTests, mobileFiles, - webFiles + webFiles, }); core.setOutput( diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3c4e311..45b5f7af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: backendFiles: ${{ steps.detect.outputs.backendFiles }} mobileFiles: ${{ steps.detect.outputs.mobileFiles }} webFiles: ${{ steps.detect.outputs.webFiles }} + backendTests: ${{ steps.detect.outputs.backendTests }} steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd @@ -60,7 +61,7 @@ jobs: - name: Backend test id: backend_test continue-on-error: true - run: cd apps/backend && pnpm test ${{ needs.detect-changes.outputs.backendFiles }} + run: cd apps/backend && pnpm test ${{ needs.detect-changes.outputs.backendTests }} - name: Backend typecheck id: backend_typecheck