From bbab09a936adc70aeb4b0c84262d3f850cc9761d Mon Sep 17 00:00:00 2001 From: RoyceDa Date: Tue, 17 Feb 2026 20:57:20 +0200 Subject: [PATCH] cache: 'npm' --- .gitea/workflows/build.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 70083c9..68a7543 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -11,17 +11,11 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 - - name: Cache NPM dependencies - uses: actions/cache@v3 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - name: Install Node.js uses: actions/setup-node@v3 with: node-version: '22' + cache: 'npm' - name: Install npm dependencies run: npm install - name: Build the application