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 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