Run Lune #4
Workflow file for this run
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: Run Lune | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| run-lune: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Install rokit | |
| run: curl -v https://raw.githubusercontent.com/rojo-rbx/rokit/main/scripts/install.sh | bash | |
| - name: Install rokit | |
| run: rokit add lune | |
| - name: Run Lune script | |
| run: | | |
| echo 'print("Hello from Lune on macOS!")' > hello.luau | |
| lune hello.luau |