Allow contents to be written #766
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
| 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 Rokit | |
| uses: CompeyDev/setup-rokit@v0.1.2 | |
| - name: Install Luau | |
| run: rokit install --no-trust-check | |
| - name: Analyze | |
| run: | | |
| output=$(luau-analyze src || true) # Suppress errors for now. |