diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml index 7cb8d361..f9fa54c2 100644 --- a/.github/workflows/code_quality.yml +++ b/.github/workflows/code_quality.yml @@ -43,10 +43,6 @@ jobs: # use the version found in `.nvmrc` node-version-file: '.nvmrc' - # shows current pnpm version - - name: check pnpm version - run: pnpm -v - - name: Install `node_modules` if: steps.cache-modules.outputs.cache-hit != 'true' run: pnpm install @@ -54,16 +50,16 @@ jobs: - name: Copy `.env.test` -> `.env` run: cp .env.test .env - - name: Cache build - uses: actions/cache@v4 - id: cache-build - with: - path: .nuxt/ - key: ${{ runner.os }}-build-${{ hashFiles('**/.nuxt') }} - restore-keys: ${{ runner.os }}-build- + # - name: Cache build + # uses: actions/cache@v4 + # id: cache-build + # with: + # path: .nuxt/ + # key: ${{ runner.os }}-build-${{ hashFiles('**/.nuxt') }} + # restore-keys: ${{ runner.os }}-build- - name: Build the `.nuxt` directory - if: steps.cache-build.outputs.cache-hit != 'true' + # if: steps.cache-build.outputs.cache-hit != 'true' run: pnpm build - name: Linting diff --git a/.github/workflows/update-api.yml b/.github/workflows/update-api.yml index 7c4a4146..01522537 100644 --- a/.github/workflows/update-api.yml +++ b/.github/workflows/update-api.yml @@ -44,10 +44,6 @@ jobs: node-version-file: '.nvmrc' cache: 'pnpm' - # shows current pnpm version - - name: check pnpm version - run: pnpm -v - - name: Install `node_modules` if: steps.cache-modules.outputs.cache-hit != 'true' run: pnpm install