feat(hm-module): set BROWSER env var if defined as default #27
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: Nix flake check | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "**/*.nix" | |
| - "flake.lock" | |
| - "sources.json" | |
| pull_request: | |
| paths: | |
| - "**/*.nix" | |
| - "flake.lock" | |
| - "sources.json" | |
| jobs: | |
| flake-check: | |
| name: Check flake | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| - name: Setup Nix cache | |
| uses: DeterminateSystems/flakehub-cache-action@main | |
| - name: Check flake | |
| run: nix flake check --debug |