diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index b31bfe59..d54d28ff 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -10,7 +10,6 @@ jobs: runs-on: ubuntu-latest permissions: contents: read - packages: read steps: - uses: actions/checkout@v4 @@ -18,21 +17,15 @@ jobs: - uses: actions/setup-node@v4 with: node-version: '20' - registry-url: 'https://registry.npmjs.org' - uses: pnpm/action-setup@v2 with: version: 9.1.4 - - name: Configure npm for GitHub Packages - run: | - npm config set @renegade-fi/tradingview-charts:registry https://npm.pkg.github.com - npm config set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }} - - name: Install dependencies - run: pnpm install --frozen-lockfile + run: pnpm install --frozen-lockfile --ignore-scripts env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PNPM_IGNORE_PACKAGES: "@renegade-fi/tradingview-charts" - run: pnpm run lint - run: pnpm run format -- --check