github/workflows: avoid cd in final cli tests

This commit is contained in:
Patrik Oldsberg
2020-04-16 17:52:08 +02:00
parent fe0b3e5b10
commit 54108354ff
+4 -8
View File
@@ -61,16 +61,12 @@ jobs:
env:
BACKSTAGE_E2E_CLI_TEST: true
- name: lint newly created app and plugin
working-directory: ${{ steps.generate_tempdir.outputs.tempdir }}
run: |
cd test-app
yarn lint:all
run: yarn lint:all
working-directory: ${{ steps.generate_tempdir.outputs.tempdir }}/test-app
env:
BACKSTAGE_E2E_CLI_TEST: true
- name: test newly created app and plugin
working-directory: ${{ steps.generate_tempdir.outputs.tempdir }}
run: |
cd test-app
yarn test:all
run: yarn test:all
working-directory: ${{ steps.generate_tempdir.outputs.tempdir }}/test-app
env:
BACKSTAGE_E2E_CLI_TEST: true