diff --git a/.gitattribute b/.gitattribute index e69de29..f2c3c54 100644 --- a/.gitattribute +++ b/.gitattribute @@ -0,0 +1,3 @@ +*.js linguist-vendored=false +*.css linguist-vendored=false +*.html linguist-vendored=false diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..8302924 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,19 @@ +name: "Test CI" + +on: [push, pull_request] + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - name: Clone the repository + uses: actions/checkout@v4 + + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@main + + - name: Cache Nix store + uses: DeterminateSystems/magic-nix-cache-action@main + + - name: Build nix package + run: nix build . diff --git a/flake.nix b/flake.nix index 287c153..2317a75 100644 --- a/flake.nix +++ b/flake.nix @@ -36,5 +36,4 @@ # Output packages packages.default = pkgs.callPackage ./. { }; }); - }