From cb9603b66402bc11b427cfb83c87ae63739e0e3a Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Fri, 16 Jun 2023 01:39:09 +0200 Subject: [PATCH] cleanup --- .github/workflows/install.yml | 40 ----------------------------------- .github/workflows/test.yml | 1 - 2 files changed, 41 deletions(-) delete mode 100644 .github/workflows/install.yml diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml deleted file mode 100644 index af7237ab307..00000000000 --- a/.github/workflows/install.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Install -on: - pull_request: -concurrency: ${{ github.workflow }}-${{ github.ref }} -jobs: - install: - name: Install - runs-on: ubuntu-latest - steps: - - name: Checkout Repo - uses: actions/checkout@v2 - - name: Setup pnpm 7 - uses: pnpm/action-setup@v2 - with: - version: 7 - - name: Setup Node.js 16.x - uses: actions/setup-node@v2 - with: - node-version: 16.x - - uses: pnpm/action-setup@v2 - name: Install pnpm - id: pnpm-install - with: - version: 7 - run_install: false - - name: Get pnpm store directory - id: pnpm-cache - shell: bash - run: | - echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 - name: Setup pnpm cache - with: - path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm-store- - - name: Install Dependencies - id: deps - run: pnpm install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 41699206171..fff87387415 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,6 @@ jobs: quality: name: Ensure Quality runs-on: ubuntu-latest - needs: dependencies strategy: fail-fast: false matrix: