From 91b5bf387ecfbba397fab8dbcfb9617992f0d51a Mon Sep 17 00:00:00 2001 From: marocchino Date: Fri, 11 Apr 2025 07:24:28 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Fix=20descriptor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5680ed5..a2e6ba2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,10 +16,9 @@ jobs: - run: | set -o pipefail mkdir -p ./pr - echo ${{ github.event.number }} | tee ./pr/number EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) echo "all_result<<$EOF" >> "$GITHUB_ENV" - yarn all >> "$GITHUB_ENV" 2&>1 || true # proceed even if yarn fails + yarn all >> "$GITHUB_ENV" 2>&1 || true # proceed even if yarn fails echo >> "$GITHUB_ENV" # yarn all doesn't necessarily produce a newline echo "$EOF" >> "$GITHUB_ENV" id: all @@ -29,9 +28,9 @@ jobs: header: All message: |
- output of yarn all + Output of yarn all - ``` + ```shell ${{ env.all_result }} ```