add license to ignore for CI #2
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: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - "README.md" | |
| - "*/.luaurc" | |
| - "LICENSE" | |
| - ".luaurc" | |
| pull_request: | |
| branches: [ main ] | |
| paths-ignore: | |
| - "README.md" | |
| - "*/.luaurc" | |
| - "LICENSE" | |
| - ".luaurc" | |
| jobs: | |
| Luau: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 2 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Rokit | |
| uses: CompeyDev/setup-rokit@v0.1.0 | |
| - name: Install Luau | |
| uses: encodedvenom/install-luau@v4.3 | |
| with: | |
| version: "0.678" | |
| verbose: "true" | |
| - name: Run Codegen | |
| run: lune run scripts/codegen w | |
| - name: Test | |
| run: luau duster.luau |