Skip to content

Commit

Permalink
chore: make escape patterns Windows compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
cyco130 committed Jan 22, 2024
1 parent 87e940f commit 650a626
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
node_version: [20]
include:
- os: ubuntu-latest
node_version: 18
- os: ubuntu-latest
node_version: 21
- os: windows-latest
node_version: 21.5 # Node 20 has a unicode file path bug on Windows and Node 21.6 has a bug that causes a crash
fail-fast: false
name: "CI tests on node-${{ matrix.node_version }}, ${{ matrix.os }}"
steps:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"test:unit": "vitest run",
"test:typecheck": "tsc -p tsconfig.json --noEmit",
"test:lint": "eslint src --max-warnings 0",
"test:prettier": "prettier --check test-files --ignore-unknown . '!pnpm-lock.yaml'",
"format": "prettier . --write --ignore-path .gitignore --ignore-unknown . '!pnpm-lock.yaml'"
"test:prettier": "prettier --check test-files --ignore-unknown . \\!pnpm-lock.yaml",
"format": "prettier . --write --ignore-path .gitignore --ignore-unknown . \\!pnpm-lock.yaml"
},
"files": [
"dist/**/*",
Expand Down

0 comments on commit 650a626

Please sign in to comment.