From 3731bb7532a0617d51d0f7c9d3df7774d7869b08 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 5 Jan 2024 22:47:04 -0700 Subject: [PATCH] Add gitea action --- .gitea/workflows/nix.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/nix.yaml 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'