From 328d5fcbe4b2be889e4e1f17af479cfb548ae1f5 Mon Sep 17 00:00:00 2001 From: Tobias Lehmann Date: Mon, 9 Sep 2024 11:41:38 +0200 Subject: [PATCH] fixed npm pipeline --- .gitea/workflows/build-nodejs.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-nodejs.yaml b/.gitea/workflows/build-nodejs.yaml index 2058c06..f395167 100644 --- a/.gitea/workflows/build-nodejs.yaml +++ b/.gitea/workflows/build-nodejs.yaml @@ -11,6 +11,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20.x' - - run: npm ci + - run: npm clean + - run: npm install - run: npm run build --if-present - run: npm test --if-present