Skip to content

Commit

Permalink
fix: exclude vendor files
Browse files Browse the repository at this point in the history
  • Loading branch information
frytg committed Nov 27, 2024
1 parent c70f6bb commit 7124ada
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ keys/*

# Dependency directories
node_modules/
vendor/

tmp
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7124ada

Please sign in to comment.