There was an error while loading. Please reload this page.
1 parent dfbe920 commit 02db92aCopy full SHA for 02db92a
.github/workflows/component-tests.yml
@@ -28,7 +28,7 @@ jobs:
28
shell: bash
29
run: |
30
if [ 0 -lt $(find tmp/component/test -type f \( -name "*.js" -or -name "*.es6" \) 2> /dev/null | wc -l) ]; then
31
- echo "::set-output name=tests_exist::true"
+ echo "tests_exist=true" >> $GITHUB_OUTPUT
32
fi
33
34
test:
@@ -94,7 +94,7 @@ jobs:
94
95
- name: Get yarn cache directory
96
id: yarn-cache-dir
97
- run: echo "::set-output name=dir::$(yarn cache dir)"
+ run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
98
99
- name: Yarn cache
100
uses: actions/cache@v3
0 commit comments