From 4997c60dec027e2dad4560558e26514a3ed93778 Mon Sep 17 00:00:00 2001 From: Sefer Mirza Date: Fri, 31 Jul 2026 14:49:45 +0300 Subject: [PATCH 1/2] init 'github-actions-update' --- .github/workflows/project-regular-checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/project-regular-checks.yml b/.github/workflows/project-regular-checks.yml index 9584260..4535b24 100644 --- a/.github/workflows/project-regular-checks.yml +++ b/.github/workflows/project-regular-checks.yml @@ -9,9 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout main - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup Node.js environment - uses: actions/setup-node@v4 + uses: actions/setup-node@v7 with: node-version: 24 - name: Install dependencies From 4c788ed3e5d7b233c42b9e0be48559f3a415e2d1 Mon Sep 17 00:00:00 2001 From: Sefer Mirza Date: Fri, 31 Jul 2026 14:58:34 +0300 Subject: [PATCH 2/2] remove cd step --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index a80502a..30c55e0 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,9 @@ .PHONY: install build test run install: - cd .scripts/ ; \ npm i build: - cd .scripts/ ; \ npm run build test: - cd .scripts/ ; \ npm test run: - cd .scripts/ ; \ npm start