From f7379259330dddbcf957f7213032aa3076e253f1 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 08:31:28 +0000 Subject: [PATCH] chore: Push workflow configuration and gitignore files --- .gitea/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 445a9a1..7948863 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,11 +13,13 @@ jobs: - uses: actions/setup-node@v4 with: node-version: '20' + cache: 'npm' - - name: Install and build - run: | - npm install - npm run build + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build - name: Run tests run: npm test