We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
||
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Syntax is invalid formatted with || at the begging of the line
To Reproduce Steps to reproduce the behavior: This workflow casuses invalid hightlighting on the last line:
name: "CI / CD" on: workflow_call jobs: prepare: name: "Prepare" runs-on: "ubuntu-22.04" outputs: perform-tests: "${{ steps.should-perform-tests.outputs.perform-tests }}" perform-lint: "${{ steps.should-perform-lint.outputs.perform-lint }}" steps: - name: "Should perform tests" id: "should-perform-tests" run: | echo "perform-tests=1" >> $GITHUB_OUTPUT - name: "Should perform lint" id: "should-perform-lint" run: | echo "perform-lint=1" >> $GITHUB_OUTPUT ci: name: "CI" runs-on: "ubuntu-22.04" needs: ["prepare"] if: > needs.prepare.outputs.perform-lint == 1 || needs.prepare.outputs.perform-tests == 1
Expected behavior The last line shouldn't be red and slanted.
Screenshots
Extension Version v0.25.8
v0.25.8
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
Syntax is invalid formatted with
||
at the begging of the lineTo Reproduce
Steps to reproduce the behavior:
This workflow casuses invalid hightlighting on the last line:
Expected behavior
The last line shouldn't be red and slanted.
Screenshots

Extension Version
v0.25.8
The text was updated successfully, but these errors were encountered: