Skip to content

Commit 096e329

Browse files
WIP. fix working directory for lint gitaction
1 parent d9f25d3 commit 096e329

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/applications.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ jobs:
2626
OS:
2727
- ubuntu-latest
2828
- windows-latest
29+
include:
30+
- APPROACH: angular
31+
param: angular
32+
- APPROACH: vue-v3
33+
param: vue-v3
34+
- APPROACH: react
35+
param: react
36+
- APPROACH: react-ts
37+
param: react
2938

3039
runs-on: ${{ matrix.OS }}
3140
env:
@@ -49,7 +58,7 @@ jobs:
4958
- run: ${{ steps.setup-chrome.outputs.chrome-path }} --version
5059

5160
- name: Create ${{ matrix.APPROACH }} application
52-
run: npm run create-template -- -- -e ${{ matrix.APPROACH }} ${{ env.TOOLING_VERSION_PARAM }}
61+
run: npm run create-template -- -- -e ${{ matrix.param }} ${{ env.TOOLING_VERSION_PARAM }}
5362
timeout-minutes: 30
5463

5564
- name: Install Internal Packages
@@ -61,10 +70,10 @@ jobs:
6170
run: pwd
6271

6372
- name: List working dir
64-
run: ls ./packages/devextreme-cli/testing/sandbox/react-ts
73+
run: ls ./packages/devextreme-cli/testing/sandbox/{{ matrix.APPROACH }}
6574

6675
- name: List working dir
67-
run: ls ./packages/devextreme-cli/testing/sandbox/react-ts/my-app
76+
run: ls ./packages/devextreme-cli/testing/sandbox/{{ matrix.APPROACH }}/my-app
6877

6978
- name: Lint created application
7079
if: ${{ matrix.OS != 'windows-latest' }}

0 commit comments

Comments
 (0)