From f64119e973709bf9c5e3c14b5d2cce2e7f159f59 Mon Sep 17 00:00:00 2001 From: Matteo Collina Date: Thu, 25 Jul 2024 16:05:45 +0200 Subject: [PATCH] Drop failing pnpm tests Signed-off-by: Matteo Collina --- .github/workflows/package-manager-ci.yml | 35 ------------------------ 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/package-manager-ci.yml diff --git a/.github/workflows/package-manager-ci.yml b/.github/workflows/package-manager-ci.yml deleted file mode 100644 index a3fe77697..000000000 --- a/.github/workflows/package-manager-ci.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: package-manager-ci -on: - push: - branches: - - main - - package-manager-load -permissions: - contents: read -env: - PNPM_CI: true -jobs: - pnpm: - name: pnpm package manager on ${{ matrix.node-version }} ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [windows-latest, ubuntu-latest] - node-version: [20] - steps: - - uses: actions/checkout@v4 - with: - persist-credentials: false - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - - name: Use pnpm - uses: pnpm/action-setup@v4.0.0 - with: - version: ^9.0.0 - - name: Install dependancies - run: pnpm install - - name: Tests - run: pnpm run test-ci-pnpm