use correct path for angular e2e tests

This commit is contained in:
Liam DeBeasi
2024-03-15 21:52:38 -04:00
parent 9aaf667992
commit c6bcf79c86

View File

@ -30,12 +30,12 @@ runs:
- name: Create Test App - name: Create Test App
run: ./build.sh ${{ inputs.app }} run: ./build.sh ${{ inputs.app }}
shell: bash shell: bash
working-directory: ./packages/angular/test working-directory: ./test-apps/angular
- name: Install Dependencies - name: Install Dependencies
run: pnpm install run: pnpm install
shell: bash shell: bash
working-directory: ./packages/angular/test/build/${{ inputs.app }} working-directory: ./test-apps/angular/build/${{ inputs.app }}
- name: Run Tests - name: Run Tests
run: pnpm run test run: pnpm run test
shell: bash shell: bash
working-directory: ./packages/angular/test/build/${{ inputs.app }} working-directory: ./test-apps/angular/build/${{ inputs.app }}