@@ -302,41 +302,12 @@ jobs:
302302 - name : Install tgz
303303 run : pnpm add -w ./devextreme-installer.tgz ./devextreme-dist-installer.tgz ./devextreme-react-installer.tgz ./devextreme-vue-installer.tgz ./devextreme-angular-installer.tgz
304304
305- - name : Run lint on all demos
306- if : github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'force all tests')
305+ - name : Run lint
307306 working-directory : apps/demos
308307 env :
309308 CHANGEDFILEINFOSPATH : changed-files.json
310309 DEBUG : ' eslint:cli-engine,stylelint:standalone'
311- run : pnpx nx lint
312-
313- - name : Run lint on changed demos
314- if : github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'force all tests')
315- working-directory : apps/demos
316- env :
317- DEBUG : ' eslint:cli-engine,stylelint:standalone'
318- run : |
319- pnpx nx lint-non-demos
320-
321- if [ -f "changed-files.json" ]; then
322- echo "Running lint-demos on changed files"
323- CHANGED_DEMOS=$(jq -r '.[].filename' changed-files.json \
324- | grep '^apps/demos/Demos/' \
325- | sed 's|^apps/demos/||' \
326- | while read f; do
327- [ -f "$f" ] && echo "$f"
328- done \
329- | tr '\n' ' ')
330- if [ ! -z "$CHANGED_DEMOS" ]; then
331- echo "Changed demo files: $CHANGED_DEMOS"
332- pnpx eslint $CHANGED_DEMOS
333- else
334- echo "No demo files changed, skipping lint-demos"
335- fi
336- else
337- echo "changed-files.json not found"
338- pnpm run lint-demos
339- fi
310+ run : pnpx nx lint-non-demos
340311
341312 check_generated_demos :
342313 name : ${{ matrix.name }}
@@ -435,7 +406,7 @@ jobs:
435406 fail-fast : false
436407 matrix :
437408 CONSTEL : [react(1/4), react(2/4), react(3/4), react(4/4), vue(1/4), vue(2/4), vue(3/4), vue(4/4), angular(1/4), angular(2/4), angular(3/4), angular(4/4)]
438- THEME : ['generic.light', 'material.blue.light', ' fluent.blue.light']
409+ THEME : ['fluent.blue.light']
439410
440411 runs-on : ubuntu-22.04
441412 name : testcafe-${{ matrix.CONSTEL }}-${{ matrix.THEME }}
0 commit comments