chore: give a name to the publish npm action (I forgor sorry) #165
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/[email protected] | |
- name: Analyze | |
run: | | |
output=$(luau-analyze src || true) # Suppress errors for now. |