From 0fa55acc14d2797d2d945bdf64a52986715bcab7 Mon Sep 17 00:00:00 2001 From: geonhee-min Date: Wed, 26 Nov 2025 11:12:08 +0900 Subject: [PATCH] issue # gitea ci test --- .gitea/workflows/gitea-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitea/workflows/gitea-ci.yml b/.gitea/workflows/gitea-ci.yml index 7bc981e..fd5722a 100644 --- a/.gitea/workflows/gitea-ci.yml +++ b/.gitea/workflows/gitea-ci.yml @@ -17,7 +17,20 @@ jobs: echo $PWD ls . + - name: Cache node_modules + uses: actions/cache@v4 + with: + path: node_modules + key: yarn-cache-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + yarn-cache- + - name: Install Dependencies with yarn run: | yarn install --immutable + ls . + + - name: Build Nestjs project + run: | + yarn build ls . \ No newline at end of file