From e6f49f622d3cee9608c72ab346e78779115d74c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=D0=B0ramtamt=C4=81m?= <7326800+tarampampam@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:16:57 +0400 Subject: [PATCH] fix(ci): Disable cache for setup-node github action --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 768c410..4ff4441 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,7 @@ jobs: # Docs: steps: - uses: actions/checkout@v4 - - {uses: actions/setup-node@v4, with: {node-version: 16, cache: 'npm'}} + - {uses: actions/setup-node@v4, with: {node-version: 16}} - name: Install linter run: npm install -g ajv-cli # Package page: @@ -55,7 +55,7 @@ jobs: # Docs: steps: - uses: actions/checkout@v4 - - {uses: actions/setup-node@v4, with: {node-version: 16, cache: 'npm'}} + - {uses: actions/setup-node@v4, with: {node-version: 16}} - name: Install eslint run: npm install -g eslint@v8 # Package page: