Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

# Use npm in CI for maximum reliability
# Use npm install in CI
- name: Install dependencies
run: npm ci
run: npm install

- name: Run linting
run: npm run lint
Expand All @@ -52,7 +51,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm ci
run: npm install

# Extract version from GitHub release tag
- name: Update package.json version
Expand Down
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ Thumbs.db
.DS_Store
Thumbs.db

# Package manager files (keep one, ignore others)
package-lock.json
yarn.lock
bun.lockb

# Build outputs
*.tsbuildinfo
.nyc_output/