File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ jobs:
2121 PR_TITLE="${{ github.event.pull_request.title }}"
2222 UNIT_TEST_REGEX='(@typescript-eslint|vitest|eslint|@types|@tsconfig|ts-node|jsdom|typescript)'
2323 WEB_TEST_REGEX='(@wdio(?!\/appium-service)|copyfiles|rimraf|saucelabs|lambdatest|webdriverio)'
24- if [[ $PR_TITLE =~ $UNIT_TEST_REGEX ]]; then
25- echo "::set-output name= run_unit_tests:: true"
24+ if [[ " $PR_TITLE" =~ $UNIT_TEST_REGEX ]]; then
25+ echo "run_unit_tests= true" >> $GITHUB_OUTPUT
2626 fi
27- if [[ $PR_TITLE =~ $WEB_TEST_REGEX ]]; then
28- echo "::set-output name= run_web_tests:: true"
27+ if [[ " $PR_TITLE" =~ $WEB_TEST_REGEX ]]; then
28+ echo "run_web_tests= true" >> $GITHUB_OUTPUT
2929 fi
3030
3131 ci-dependency-unit-test :
You can’t perform that action at this time.
0 commit comments