Skip to content

Commit

Permalink
fix: windows npm install (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoishin authored Jan 5, 2025
1 parent a9cc4da commit d042394
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 331 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ on:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- "18"
- "20"
- "22"
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -27,6 +30,4 @@ jobs:
- run: npm ci
- run: npm run static
- run: npm test
- uses: codecov/codecov-action@v3
if: matrix.node-version == '22'
- run: npm run build
Loading

0 comments on commit d042394

Please sign in to comment.