Skip to content

Commit 27bbe76

Browse files
fix working directory for lint gitaction
1 parent 1fe8783 commit 27bbe76

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/applications.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,18 @@ jobs:
5757
with:
5858
working-directory: packages/devextreme-cli/testing/sandbox/${{ matrix.APPROACH }}/my-app
5959

60+
- name: Lint created application
61+
if: ${{ matrix.OS != 'windows-latest' }}
62+
run: npm run lint-template -- -- -e ${{ matrix.APPROACH }} ${{ env.TOOLING_VERSION_PARAM }}
63+
6064
- name: print working dir
6165
run: pwd
6266

6367
- name: List working dir
6468
run: ls .
6569

66-
- name: Lint created application
67-
if: ${{ matrix.OS != 'windows-latest' }}
68-
run: npm run lint-template -- -- -e ${{ matrix.APPROACH }} ${{ env.TOOLING_VERSION_PARAM }}
69-
70+
- name: List working dir
71+
run: ls .; ls ./packages/${{ matrix.APPROACH }}
7072

7173
- name: Run template tests
7274
if: ${{ matrix.OS != 'windows-latest' }}

0 commit comments

Comments
 (0)