From 6bbc89f58467fc47fddb4f0500afc1bf2c77b50b Mon Sep 17 00:00:00 2001 From: Navin Moorthy Date: Wed, 29 Jun 2022 22:34:46 +0530 Subject: [PATCH] =?UTF-8?q?ci(actions):=20=F0=9F=92=9A=20add=20only=20chec?= =?UTF-8?q?kout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7e76ab77..22a1ef1e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,25 +16,3 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - - name: Set up Node - uses: actions/setup-node@v3 - with: - node-version-file: .nvmrc - - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" - - - name: Cache node_modules - - uses: actions/cache@v3 - id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- - - - name: Install Dependencies - if: steps.yarn-cache.outputs.cache-hit != 'true' - run: yarn --prefer-offline --frozen-lockfile