Improve performance, layout, and internal consistency across wallpaper UI and logic #41
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: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint-build-test: | |
| name: Lint, Build, and Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint (ESLint) | |
| run: npm run lint:check | |
| - name: Type check | |
| run: npm run ts:check | |
| - name: Format check (Prettier) | |
| run: npm run format:check | |
| - name: Package | |
| run: npm run package | |
| nix-build: | |
| name: Build Nix Package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| - name: Build Nix package | |
| run: nix build | |
| arch-build: | |
| name: Build Arch Linux Package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Build Arch Linux package | |
| uses: heyhusen/archlinux-package-action@v2 | |
| with: | |
| path: packaging/arch | |
| srcinfo: true | |
| namcap: true | |
| aur: true |