diff --git a/.gitea/workflows/nix.yaml b/.gitea/workflows/nix.yaml new file mode 100644 index 0000000..765624b --- /dev/null +++ b/.gitea/workflows/nix.yaml @@ -0,0 +1,18 @@ +name: Nix +on: + pull_request: + +env: + NIXPKGS_ALLOW_UNFREE: 1 + +jobs: + install: + name: Install + runs-on: nixos-x86_64-linux + steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + lfs: true + - name: lint + run: nix develop --impure --command bash -c 'yarn run lint'