From 6318aa12c19a4d01d36acf9236214460a2bd81ed Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Fri, 26 Apr 2024 14:23:24 -0300 Subject: [PATCH] Remove now-unnecessary shellcheck check --- .github/workflows/ci.yml | 2 -- flake.nix | 1 - 2 files changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaca487..395ecde 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,6 @@ jobs: uses: DeterminateSystems/nix-installer-action@main - name: Enable magic Nix cache uses: DeterminateSystems/magic-nix-cache-action@main - - name: Shellcheck - run: nix develop --command shellcheck $(find . -type f -name "*.sh" -executable) - name: Install pnpm dependencies run: nix develop --command pnpm install - name: Check formatting diff --git a/flake.nix b/flake.nix index 694ab0d..d968aa3 100644 --- a/flake.nix +++ b/flake.nix @@ -14,7 +14,6 @@ devShells = forEachSupportedSystem ({ pkgs }: { default = pkgs.mkShell { packages = with pkgs; [ - shellcheck nodejs_latest nodePackages_latest.pnpm ];