Skip to content

Commit b04b741

Browse files
Replace working-directory with cd
1 parent cd06c15 commit b04b741

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ jobs:
3737
- run: yarn run lint
3838
- run: yarn run test
3939

40-
- run: npx testpack-cli --verbose --test-folder=../regex-to-strings-testpack --keep=@types/*,ts-jest,typescript jest.config.js tsconfig.test.json src/e2e.spec.ts
41-
working-directory: packages/regex-to-strings
40+
- run: |
41+
cd packages/regex-to-strings
42+
npx testpack-cli --verbose --keep=@types/*,ts-jest,typescript jest.config.js tsconfig.test.json src/e2e.spec.ts
4243
4344
- name: Upload test coverage report to Codecov
4445
uses: codecov/codecov-action@v2.1.0

0 commit comments

Comments
 (0)