feat(claude): add anthropics/claude-plugins-community marketplace #5972
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: Lua | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| lua-neovim: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 300 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| extra_nix_config: | | |
| fallback = true | |
| connect-timeout = 10 | |
| download-attempts = 5 | |
| - name: Validate Neovim Configuration (Dev Shell) | |
| run: make lua-check-neovim-dev | |
| lua-neovim-test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| extra_nix_config: | | |
| fallback = true | |
| connect-timeout = 10 | |
| download-attempts = 5 | |
| - name: Run Neovim Tests (Dev Shell) | |
| run: make neovim-test-dev | |
| lua-hammerspoon: | |
| runs-on: macos-latest | |
| timeout-minutes: 300 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| extra_nix_config: | | |
| fallback = true | |
| connect-timeout = 10 | |
| download-attempts = 5 | |
| - name: Validate Hammerspoon Configuration (Dev Shell) | |
| run: make lua-check-hammerspoon-dev | |
| lua-check: | |
| if: always() | |
| needs: | |
| - lua-neovim | |
| - lua-neovim-test | |
| - lua-hammerspoon | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 3 | |
| steps: | |
| - name: Alls Green | |
| uses: re-actors/alls-green@release/v1 | |
| with: | |
| jobs: ${{ toJSON(needs) }} |