Add per-place profile pinning (#29) #119
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: 馃攳 Static Code Analysis | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| analyze: | |
| name: 馃И Lint & Type Check | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: 馃摜 Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: 馃敡 Install Rokit | |
| uses: CompeyDev/setup-rokit@v0.1.2 | |
| with: | |
| cache: true | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: 馃搵 Verify tools | |
| run: rokit list | |
| - name: Run Lute setup | |
| run: lute setup | |
| - name: 馃摝 Setup project | |
| run: lute run setup | |
| env: | |
| ROBLOX_API_KEY: ${{ secrets.ROBLOX_API_KEY }} | |
| - name: 馃攷 Run lint | |
| run: lute run lint | |
| - name: 馃攷 Run static analysis | |
| run: lute run analyze |