build(nvmrc): bump Node.js version from 22 to 24 #66
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#multiline-strings | |
| name: Multiline strings | |
| on: push | |
| jobs: | |
| multiline-strings: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set the value | |
| run: | | |
| { | |
| echo 'JSON_RESPONSE<<EOF' | |
| curl https://example.com | |
| echo EOF | |
| } >> "$GITHUB_ENV" | |
| - name: Use the value | |
| run: printf '%s\n' "$JSON_RESPONSE" |