diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 365f2d6..b56c91b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -128,8 +128,8 @@ jobs: - name: Test (Windows) if: matrix.os == 'windows-latest' - run: npx --yes tsx --test "**\*.test.ts" + run: npx --yes glob '**/*.test.ts' | xargs npx tsx --test - name: Test (Linux/macOS) if: matrix.os != 'windows-latest' - run: npx --yes tsx --test "**/*.test.ts" + run: npx --yes tsx --test **/*.test.ts diff --git a/.gitignore b/.gitignore index 9ab0b93..5854978 100644 --- a/.gitignore +++ b/.gitignore @@ -13,5 +13,6 @@ keys/* # Dependency directories node_modules/ +vendor/ tmp diff --git a/biome.json b/biome.json index 9e51fc6..344e858 100644 --- a/biome.json +++ b/biome.json @@ -2,7 +2,7 @@ "$schema": "https://biomejs.dev/schemas/1.9.3/schema.json", "files": { "maxSize": 2097152, - "ignore": ["*.vue"] + "ignore": ["*.vue", "vendor"] }, "formatter": { "indentStyle": "tab",