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