From cc9f0675e48181a3e9bafc8bf522a723cb90441c Mon Sep 17 00:00:00 2001 From: Sokhibjon Orzikulov Date: Thu, 19 Sep 2024 17:17:53 +0500 Subject: [PATCH] ignore html css --- .gitattribute | 3 +++ .github/workflows/test.yml | 19 +++++++++++++++++++ flake.nix | 1 - 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/test.yml 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 ./. { }; }); - }