From 57b499856c3e70f85c1b3e467bbca38cd0981232 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:03:04 +0400 Subject: [PATCH] chore(ci): Switch from gacts/setup-node-with-cache to actions/setup-node 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 504994a..dd9cc8e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,7 +31,7 @@ jobs: env: {FORCE_COLOR: 'true'} steps: - uses: actions/checkout@v4 - - {uses: gacts/setup-node-with-cache@v1, with: {node-version: 20}} + - {uses: actions/setup-node@v4, with: {node-version: 20, cache: 'npm'}} - run: npm install - run: npm run lint @@ -43,7 +43,7 @@ jobs: env: {FORCE_COLOR: 'true'} steps: - uses: actions/checkout@v4 - - {uses: gacts/setup-node-with-cache@v1, with: {node-version: 20}} + - {uses: actions/setup-node@v4, with: {node-version: 20, cache: 'npm'}} - run: npm install - run: npm run build - uses: actions/upload-artifact@v4