fix failing tests

This commit is contained in:
Kim, Jimin 2025-03-18 18:47:33 +09:00
parent fb64fa1397
commit 85ec58d126
Signed by: pomp
GPG key ID: D3932F82A0667A3B
3 changed files with 5 additions and 2 deletions

View file

@ -25,7 +25,7 @@ jobs:
with: with:
name: devenv name: devenv
- uses: DeterminateSystems/magic-nix-cache-action@main - uses: DeterminateSystems/flakehub-cache-action@main
- name: Install devenv.sh - name: Install devenv.sh
run: nix profile install nixpkgs#devenv run: nix profile install nixpkgs#devenv

View file

@ -1,4 +1,7 @@
import pompydevEslintConfig from "@pompydev/eslint-config" import pompydevEslintConfig from "@pompydev/eslint-config"
import { globalIgnores } from "eslint/config" import { globalIgnores } from "eslint/config"
export default [globalIgnores(["**/.nuxt/"]), ...pompydevEslintConfig] export default [
globalIgnores(["**/.nuxt/", "**/.output/"]),
...pompydevEslintConfig,
]