feat(installer): add Runit support and Void Linux build from source #9
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: | |
| push: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🛎️ Checkout code | |
| uses: actions/checkout@v4 | |
| - name: 🥟 Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: 📦 Install dependencies | |
| run: bun install | |
| - name: 🔍 Run ESLint | |
| run: bun run lint | |
| - name: 🔍 Run TypeScript check | |
| run: bun run type-check | |
| - name: 🛠️ Build project | |
| run: bun run build |