Skip to content

Commit

Permalink
fix: convert json output to single-line output
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Jul 23, 2024
1 parent 6ddc7e1 commit ceb1fae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/reactCompiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
check:
name: conformity
name: 🧬 Conformity
runs-on: ubuntu-latest

steps:
Expand All @@ -20,7 +20,9 @@ jobs:
uses: ./.github/actions/composite/setupNode
- name: Get list of compiled files (PR)
id: new-list
run: echo "NEW_LIST=$(npx react-compiler-healthcheck --json)" >> "$GITHUB_OUTPUT"
run: |
NEW_LIST=$(npx react-compiler-healthcheck --json | jq -c .)
echo "NEW_LIST=$NEW_LIST" >> "$GITHUB_OUTPUT"
- uses: actions/checkout@v4
- name: Setup Node
uses: ./.github/actions/composite/setupNode
Expand Down

0 comments on commit ceb1fae

Please sign in to comment.