Add support for components in both positions of pairs #121
This file contains 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
name: Analysis | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
run: | |
name: Run Luau Analyze | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v4 | |
- name: Install Luau | |
uses: encodedvenom/install-luau@v2.1 | |
- name: Analyze | |
run: | | |
output=$(luau-analyze src || true) # Suppress errors for now. |