diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78870538..4895fb62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,12 +20,14 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - - run: npm ci + - run: npm ci --foreground-scripts - run: npm run lint if: ${{ matrix.os == 'ubuntu-latest' }} - run: npm run build-web if: ${{ matrix.os == 'ubuntu-latest' }} - run: xvfb-run -a npm t if: ${{ matrix.os == 'ubuntu-latest' }} - - run: npm t + - run: | + ls ./node_modules/@vscode/ripgrep/bin + npm t if: ${{ matrix.os == 'windows-latest' }}