diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9244db..b45a64d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 diff --git a/.gitignore b/.gitignore index 06abe34..96e1bad 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ \ No newline at end of file