From 5acee252c6fc6b1628c8f6181f2b21b1d058daf2 Mon Sep 17 00:00:00 2001 From: sudo-rsingh Date: Fri, 15 May 2026 00:50:40 +0530 Subject: [PATCH] Update .github/workflows/build.yml --- .github/workflows/build.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 49961af..e031e00 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,20 @@ jobs: build: runs-on: ubuntu-latest steps: - - run: | + - name: Cache APT packages + uses: actions/cache@v4 + with: + path: | + /var/cache/apt/archives + /var/lib/apt/lists + key: ${{ runner.os }}-apt-nodejs-npm-git + restore-keys: | + ${{ runner.os }}-apt- + + - name: Install Dependencies + run: | apt-get update apt-get install -y nodejs npm git - - uses: actions/checkout@v6 \ No newline at end of file + + - name: Checkout Repo + uses: actions/checkout@v6 \ No newline at end of file