From 85ec58d126c31df1e8a0d7fa423b5791a08cd63c Mon Sep 17 00:00:00 2001 From: pompydev Date: Tue, 18 Mar 2025 18:47:33 +0900 Subject: [PATCH] fix failing tests --- .github/workflows/test.yml | 2 +- apps/rank/{.prettierrc.mjs => .prettierrc.cjs} | 0 apps/rank/eslint.config.js | 5 ++++- 3 files changed, 5 insertions(+), 2 deletions(-) rename apps/rank/{.prettierrc.mjs => .prettierrc.cjs} (100%) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 859ad18..850c55e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: with: name: devenv - - uses: DeterminateSystems/magic-nix-cache-action@main + - uses: DeterminateSystems/flakehub-cache-action@main - name: Install devenv.sh run: nix profile install nixpkgs#devenv diff --git a/apps/rank/.prettierrc.mjs b/apps/rank/.prettierrc.cjs similarity index 100% rename from apps/rank/.prettierrc.mjs rename to apps/rank/.prettierrc.cjs diff --git a/apps/rank/eslint.config.js b/apps/rank/eslint.config.js index 9ea3800..a85c66a 100644 --- a/apps/rank/eslint.config.js +++ b/apps/rank/eslint.config.js @@ -1,4 +1,7 @@ import pompydevEslintConfig from "@pompydev/eslint-config" import { globalIgnores } from "eslint/config" -export default [globalIgnores(["**/.nuxt/"]), ...pompydevEslintConfig] +export default [ + globalIgnores(["**/.nuxt/", "**/.output/"]), + ...pompydevEslintConfig, +]